[vlc-devel] commit: Fixed packetized flag value for aes3 stream. (Laurent Aimar )
git version control
git at videolan.org
Mon Aug 25 23:15:34 CEST 2008
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Mon Aug 25 23:16:55 2008 +0200| [a060c85d9b894978e5657fdb474893fa6ead7286] | committer: Laurent Aimar
Fixed packetized flag value for aes3 stream.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a060c85d9b894978e5657fdb474893fa6ead7286
---
modules/demux/ts.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/modules/demux/ts.c b/modules/demux/ts.c
index 7e249db..a49ba41 100644
--- a/modules/demux/ts.c
+++ b/modules/demux/ts.c
@@ -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 ) )
{
pid->es->fmt.i_cat = AUDIO_ES;
+ pid->es->fmt.b_packetized = true;
pid->es->fmt.i_codec = VLC_FOURCC('a','e','s','3');
}
else
More information about the vlc-devel
mailing list