[vlc-commits] Mux HEVC in transport streams
    Rafaël Carré 
    git at videolan.org
       
    Thu Apr 17 15:47:07 CEST 2014
    
    
  
vlc | branch: master | Rafaël Carré <funman at videolan.org> | Thu Apr 17 15:33:37 2014 +0200| [27f1750c106775cfdec61a286e840d16e89d979e] | committer: Rafaël Carré
Mux HEVC in transport streams
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=27f1750c106775cfdec61a286e840d16e89d979e
---
 modules/mux/mpeg/ts.c |    4 ++++
 1 file changed, 4 insertions(+)
diff --git a/modules/mux/mpeg/ts.c b/modules/mux/mpeg/ts.c
index e629a70..f973769 100644
--- a/modules/mux/mpeg/ts.c
+++ b/modules/mux/mpeg/ts.c
@@ -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;
    
    
More information about the vlc-commits
mailing list