[vlc-commits] Qt: fix profiles with vcodec=copy (fix #9342, fix #9485)
Francois Cartegnie
git at videolan.org
Fri Nov 29 12:20:39 CET 2013
vlc/vlc-2.1 | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Fri Nov 29 10:28:14 2013 +0100| [7cc64bcacaa6b07b21aea0ae08a28f8ef13f1144] | committer: Jean-Baptiste Kempf
Qt: fix profiles with vcodec=copy (fix #9342, fix #9485)
(cherry picked from commit 7ca3f99c1efc986f99dcae91f942bd81f5084e8f)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=7cc64bcacaa6b07b21aea0ae08a28f8ef13f1144
---
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