[vlc-commits] ts: handle support for ISO/IEC 14496-3 Audio stream type. (fix #7769)
Francois Cartegnie
git at videolan.org
Sun Aug 25 18:22:21 CEST 2013
vlc/vlc-2.1 | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sat Aug 24 16:15:09 2013 +0200| [38a882e5eeea744a19ab39df24852508db8adc19] | committer: Jean-Baptiste Kempf
ts: handle support for ISO/IEC 14496-3 Audio stream type. (fix #7769)
Reserved stream types allocated in TREC H222.0
(cherry picked from commit 00bf960c5461491d67e18989cfceedfbcebe6750)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=38a882e5eeea744a19ab39df24852508db8adc19
---
modules/demux/ts.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/modules/demux/ts.c b/modules/demux/ts.c
index a6ccb52..1b8389b 100644
--- a/modules/demux/ts.c
+++ b/modules/demux/ts.c
@@ -2393,6 +2393,8 @@ static void PIDFillFormat( ts_es_t *es, int i_stream_type )
break;
case 0x11: /* MPEG4 (audio) LATM */
case 0x0f: /* ISO/IEC 13818-7 Audio with ADTS transport syntax */
+ case 0x1c: /* ISO/IEC 14496-3 Audio, without using any additional
+ transport syntax, such as DST, ALS and SLS */
es_format_Init( fmt, AUDIO_ES, VLC_CODEC_MP4A );
break;
case 0x10: /* MPEG4 (video) */
More information about the vlc-commits
mailing list