[vlc-commits] Qt: fix profiles with vcodec=copy (fix #9342, fix #9485)

Francois Cartegnie git at videolan.org
Fri Nov 29 10:32:23 CET 2013


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Fri Nov 29 10:28:14 2013 +0100| [7ca3f99c1efc986f99dcae91f942bd81f5084e8f] | committer: Francois Cartegnie

Qt: fix profiles with vcodec=copy (fix #9342, fix #9485)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7ca3f99c1efc986f99dcae91f942bd81f5084e8f
---

 modules/gui/qt4/components/sout/profile_selector.cpp |    8 --------
 1 file changed, 8 deletions(-)

diff --git a/modules/gui/qt4/components/sout/profile_selector.cpp b/modules/gui/qt4/components/sout/profile_selector.cpp
index 5b5a724..b9f7ea8 100644
--- a/modules/gui/qt4/components/sout/profile_selector.cpp
+++ b/modules/gui/qt4/components/sout/profile_selector.cpp
@@ -287,10 +287,6 @@ void VLCProfileSelector::updateOptions( int i )
             HASHPICK( "vcodec", "height" );
             if ( !value.isEmpty() && value.toInt() > 0 )
                 smrl.option( "height", value );
-        } else {
-            HASHPICK( "video", "copy" );
-            if ( ! value.isEmpty() )
-                smrl.option( "vcodec", "copy" );
         }
     } else {
         smrl.option( "vcodec", "none" );
@@ -320,10 +316,6 @@ void VLCProfileSelector::updateOptions( int i )
                 smrl.option( "afilter", valuesList.join( ":" ) );
             }
 
-        } else {
-            HASHPICK( "audio", "copy" );
-            if ( ! value.isEmpty() )
-                smrl.option( "acodec", "copy" );
         }
     } else {
         smrl.option( "acodec", "none" );



More information about the vlc-commits mailing list