From f3334ccb2f26fc984779015d37df7ea5b8dd88d0 Mon Sep 17 00:00:00 2001 From: Christophe Massiot Date: Wed, 11 Feb 2009 17:17:21 +0100 Subject: [PATCH] Fix handling of AAC ADTS Signed-off-by: Christophe Mutricy --- modules/mux/mpeg/ts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2