]> git.sesse.net Git - vlc/commitdiff
Mux HEVC in transport streams
authorRafaël Carré <funman@videolan.org>
Thu, 17 Apr 2014 13:33:37 +0000 (15:33 +0200)
committerRafaël Carré <funman@videolan.org>
Thu, 17 Apr 2014 13:33:37 +0000 (15:33 +0200)
modules/mux/mpeg/ts.c

index e629a70fec0c865b66c7bb0ec41b682b14d63ab4..f97376915e6b41e06651c68570707142b597a73c 100644 (file)
@@ -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_es_id = p_stream->i_pid;
         break;
+    case VLC_CODEC_HEVC:
+        p_stream->i_stream_type = 0x24;
+        p_stream->i_stream_id = 0xe0;
+        break;
     case VLC_CODEC_H264:
         p_stream->i_stream_type = 0x1b;
         p_stream->i_stream_id = 0xe0;