]> git.sesse.net Git - vlc/commitdiff
qt4: don't scale to 720p on webm profile
authorIlkka Ollakka <ileoo@videolan.org>
Sat, 5 Jun 2010 20:19:38 +0000 (23:19 +0300)
committerIlkka Ollakka <ileoo@videolan.org>
Sat, 5 Jun 2010 20:19:48 +0000 (23:19 +0300)
Which was wrong way anyway.

modules/gui/qt4/components/sout/profiles.hpp

index 93029000704ab59126c10e98d665c2a95d579fe7..f1034a7902344921ad069032044e9de3b7489d73 100644 (file)
@@ -3,7 +3,7 @@
 
 static const char video_profile_name_list[][35] = {
     "Video - H.264 + AAC (MP4)",
-    "Video - 720p VP80 + Vorbis (Webm)",
+    "Video - VP80 + Vorbis (Webm)",
     "Video - H.264 + AAC (TS)",
     "Video - Dirac + AAC (TS)",
     "Video - Theora + Vorbis (OGG)",
@@ -25,7 +25,7 @@ static const char video_profile_value_list[][53] = {
     /* audio codec(string), audio bitrate(integer), channels(integer), */
     /* samplerate(integer), subtitle codec(string), subtitle overlay(bool) */
     "mp4;1;1;0;h264;0;0;0;0;0;mp4a;128;2;44100;0;1",
-    "webm;1;1;0;VP80;2000;0;0;720;0;vorb;128;2;44100;0;1",
+    "webm;1;1;0;VP80;2000;0;0;0;0;vorb;128;2;44100;0;1",
     "ts;1;1;0;h264;800;1;0;0;0;mp4a;128;2;44100;0;0",
     "ts;1;1;0;drac;800;1;0;0;0;mp4a;128;2;44100;0;0",
     "ogg;1;1;0;theo;800;1;0;0;0;vorb;128;2;44100;0;0",