]> git.sesse.net Git - vlc/commitdiff
Suppport AAC LATM inside PS (with a PSM).
authorLaurent Aimar <fenrir@videolan.org>
Mon, 16 Feb 2009 18:51:54 +0000 (19:51 +0100)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 16 Feb 2009 20:13:18 +0000 (21:13 +0100)
modules/demux/ps.h

index eb4f76289892821f98c3f22774089600f7ffbbff..fed3ab0ac93a33ed4380d333ce14ca16136df08a 100644 (file)
@@ -147,6 +147,10 @@ static inline int ps_track_fill( ps_track_t *tk, ps_psm_t *p_psm, int i_id )
         {
             es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('m','p','4','a') );
         }
+        else if( ( i_id&0xe0 ) == 0xc0 && i_type == 0x11 )
+        {
+            es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('m','p','4','a') );
+        }
         else if( ( i_id&0xe0 ) == 0xc0 && i_type == 0x03 )
         {
             es_format_Init( &tk->fmt, AUDIO_ES, VLC_FOURCC('m','p','g','a') );