Commit d3f5f59b authored by Laurent Aimar's avatar Laurent Aimar

* ts: added lpcm and dts stream. (untested)

parent 1c9f6db4
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* ts.c: MPEG-II TS Muxer * ts.c: MPEG-II TS Muxer
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * Copyright (C) 2001, 2002 VideoLAN
* $Id: ts.c,v 1.38 2003/11/22 16:48:49 fenrir Exp $ * $Id: ts.c,v 1.39 2003/11/22 20:25:01 fenrir Exp $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org> * Eric Petit <titer@videolan.org>
...@@ -474,6 +474,15 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) ...@@ -474,6 +474,15 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
p_stream->i_stream_type = 0x81; p_stream->i_stream_type = 0x81;
p_stream->i_stream_id = 0xbd; p_stream->i_stream_id = 0xbd;
break; break;
case VLC_FOURCC( 'l', 'p','c', 'm' ):
p_stream->i_stream_type = 0x83;
p_stream->i_stream_id = 0xbd;
break;
case VLC_FOURCC( 'd', 't','s', ' ' ):
p_stream->i_stream_type = 0x85;
p_stream->i_stream_id = 0xbd;
break;
case VLC_FOURCC( 'm', 'p','4', 'a' ): case VLC_FOURCC( 'm', 'p','4', 'a' ):
p_stream->i_stream_type = 0x11; p_stream->i_stream_type = 0x11;
p_stream->i_stream_id = 0xfa; p_stream->i_stream_id = 0xfa;
...@@ -492,7 +501,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) ...@@ -492,7 +501,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
{ {
case VLC_FOURCC( 's', 'p','u', ' ' ): case VLC_FOURCC( 's', 'p','u', ' ' ):
p_stream->i_stream_type = 0x82; p_stream->i_stream_type = 0x82;
p_stream->i_stream_id = 0x82; p_stream->i_stream_id = 0xbd;
break; break;
default: default:
free( p_stream ); free( p_stream );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment