vlc | branch: master | Rafaël Carré <[email protected]> | Thu Jan 16 16:12:58 2014 +0100| [37502dd2d20a6c7669e81a24cccdaaea47c09f83] | committer: Rafaël Carré
Qt4: add h265 transcoding profile > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=37502dd2d20a6c7669e81a24cccdaaea47c09f83 --- modules/gui/qt4/components/sout/profile_selector.cpp | 1 + modules/gui/qt4/components/sout/profiles.hpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/modules/gui/qt4/components/sout/profile_selector.cpp b/modules/gui/qt4/components/sout/profile_selector.cpp index b9f7ea8..48ee72c 100644 --- a/modules/gui/qt4/components/sout/profile_selector.cpp +++ b/modules/gui/qt4/components/sout/profile_selector.cpp @@ -532,6 +532,7 @@ inline void VLCProfileEditor::registerCodecs() ADD_VCODEC( "DIVX 3" , "DIV3" ) ADD_VCODEC( "H-263", "H263" ) ADD_VCODEC( "H-264", "h264" ) + ADD_VCODEC( "H-265", "hevc" ) ADD_VCODEC( "VP8", "VP80" ) ADD_VCODEC( "WMV1", "WMV1" ) ADD_VCODEC( "WMV2" , "WMV2" ) diff --git a/modules/gui/qt4/components/sout/profiles.hpp b/modules/gui/qt4/components/sout/profiles.hpp index fdc3bd4..4c9e7f5 100644 --- a/modules/gui/qt4/components/sout/profiles.hpp +++ b/modules/gui/qt4/components/sout/profiles.hpp @@ -5,6 +5,7 @@ static const char video_profile_name_list[][37] = { "Video - H.264 + MP3 (MP4)", "Video - VP80 + Vorbis (Webm)", "Video - H.264 + MP3 (TS)", + "Video - H.265 + MP3 (MP4)", "Video - Theora + Vorbis (OGG)", "Video - MPEG-2 + MPGA (TS)", "Video - Dirac + MP3 (TS)", @@ -30,6 +31,7 @@ static const char * video_profile_value_list[] = { "audio_enable=yes;audio_codec=mpga;acodec_bitrate=128;acodec_channels=2;acodec_samplerate=44100;video_enable=yes;video_codec=h264;vcodec_bitrate=0;vcodec_qp=0;vcodec_framerate=0;vcodec_width=0;vcodec_height=0;muxer_mux=mp4", "video_enable=yes;video_codec=VP80;vcodec_bitrate=2000;vcodec_framerate=0;vcodec_width=0;vcodec_height=0;audio_enable=yes;audio_codec=vorb;acodec_bitrate=128;acodec_channels=2;acodec_samplerate=44100;muxer_mux=webm", "audio_enable=yes;audio_codec=mpga;acodec_bitrate=128;acodec_channels=2;acodec_samplerate=44100;video_enable=yes;video_codec=h264;vcodec_bitrate=800;vcodec_qp=0;vcodec_framerate=0;vcodec_width=0;vcodec_height=0;muxer_mux=ts", + "audio_enable=yes;audio_codec=mpga;acodec_bitrate=128;acodec_channels=2;acodec_samplerate=44100;video_enable=yes;video_codec=hevc;vcodec_bitrate=0;vcodec_framerate=0;vcodec_width=0;vcodec_height=0;muxer_mux=mp4", "audio_enable=yes;audio_codec=vorb;acodec_bitrate=128;acodec_channels=2;acodec_samplerate=44100;video_enable=yes;video_codec=theo;vcodec_bitrate=800;vcodec_framerate=0;vcodec_width=0;vcodec_height=0;muxer_mux=ogg", "audio_enable=yes;audio_codec=mpga;acodec_bitrate=128;acodec_channels=2;acodec_samplerate=44100;video_enable=yes;video_codec=mp2v;vcodec_bitrate=800;vcodec_framerate=0;vcodec_width=0;vcodec_height=0;muxer_mux=ts", "video_enable=yes;video_codec=drac;vcodec_bitrate=800;vcodec_framerate=0;vcodec_width=0;vcodec_height=0;audio_enable=yes;audio_codec=mpga;acodec_bitrate=128;acodec_channels=2;acodec_samplerate=44100;muxer_mux=ts", _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
