From: Christophe Massiot Date: Wed, 11 Feb 2009 16:17:21 +0000 (+0100) Subject: Fix handling of AAC ADTS X-Git-Tag: 1.0.0-pre1~736 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f3334ccb2f26fc984779015d37df7ea5b8dd88d0;p=vlc Fix handling of AAC ADTS Signed-off-by: Christophe Mutricy --- diff --git a/modules/mux/mpeg/ts.c b/modules/mux/mpeg/ts.c index 286508289e..209f3344fc 100644 --- a/modules/mux/mpeg/ts.c +++ b/modules/mux/mpeg/ts.c @@ -1072,7 +1072,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) * is implemented for AAC in TS */ //p_stream->i_stream_type = 0x11; /* LOAS/LATM */ p_stream->i_stream_type = 0x0f; /* ADTS */ - p_stream->i_stream_id = 0xfa; + p_stream->i_stream_id = 0xc0; p_sys->i_mpeg4_streams++; p_stream->i_es_id = p_stream->i_pid; break;