[vlc-devel] commit: Suppport AAC LATM inside PS (with a PSM). (Laurent Aimar )
git version control
git at videolan.org
Mon Feb 16 21:13:45 CET 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Mon Feb 16 19:51:54 2009 +0100| [337b63e85fca1fdcf3967053e68540413ad60ee4] | committer: Laurent Aimar
Suppport AAC LATM inside PS (with a PSM).
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=337b63e85fca1fdcf3967053e68540413ad60ee4
---
modules/demux/ps.h | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/modules/demux/ps.h b/modules/demux/ps.h
index eb4f762..fed3ab0 100644
--- a/modules/demux/ps.h
+++ b/modules/demux/ps.h
@@ -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') );
More information about the vlc-devel
mailing list