Commit 27f1750c authored by Rafaël Carré's avatar Rafaël Carré

Mux HEVC in transport streams

parent 50fbb8e9
...@@ -906,6 +906,10 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) ...@@ -906,6 +906,10 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input )
p_stream->i_stream_id = 0xe0; p_stream->i_stream_id = 0xe0;
p_stream->i_es_id = p_stream->i_pid; p_stream->i_es_id = p_stream->i_pid;
break; break;
case VLC_CODEC_HEVC:
p_stream->i_stream_type = 0x24;
p_stream->i_stream_id = 0xe0;
break;
case VLC_CODEC_H264: case VLC_CODEC_H264:
p_stream->i_stream_type = 0x1b; p_stream->i_stream_type = 0x1b;
p_stream->i_stream_id = 0xe0; p_stream->i_stream_id = 0xe0;
......
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