[vlc-commits] ts: handle support for ISO/IEC 14496-3 Audio stream type. (fix #7769)
Francois Cartegnie
git at videolan.org
Sat Aug 24 16:15:37 CEST 2013
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sat Aug 24 16:15:09 2013 +0200| [00bf960c5461491d67e18989cfceedfbcebe6750] | committer: Francois Cartegnie
ts: handle support for ISO/IEC 14496-3 Audio stream type. (fix #7769)
Reserved stream types allocated in TREC H222.0
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=00bf960c5461491d67e18989cfceedfbcebe6750
---
modules/demux/ts.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/modules/demux/ts.c b/modules/demux/ts.c
index 5c4a288..a9bc15d 100644
--- a/modules/demux/ts.c
+++ b/modules/demux/ts.c
@@ -2405,6 +2405,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