Commit a060c85d authored by Laurent Aimar's avatar Laurent Aimar

Fixed packetized flag value for aes3 stream.

parent f3306b5d
...@@ -3303,6 +3303,7 @@ static void PMTCallBack( demux_t *p_demux, dvbpsi_pmt_t *p_pmt ) ...@@ -3303,6 +3303,7 @@ static void PMTCallBack( demux_t *p_demux, dvbpsi_pmt_t *p_pmt )
else if( !memcmp( p_dr->p_data, "BSSD", 4 ) ) else if( !memcmp( p_dr->p_data, "BSSD", 4 ) )
{ {
pid->es->fmt.i_cat = AUDIO_ES; pid->es->fmt.i_cat = AUDIO_ES;
pid->es->fmt.b_packetized = true;
pid->es->fmt.i_codec = VLC_FOURCC('a','e','s','3'); pid->es->fmt.i_codec = VLC_FOURCC('a','e','s','3');
} }
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment