[vlc-commits] commit: Win32: Remove quicktime from system codecs... (Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Mon Jul 19 23:52:56 CEST 2010
vlc/vlc-1.1 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Jul 19 23:45:38 2010 +0200| [c0a90235ab6008ecbdab7773ebac8eed855dbba7] | committer: Jean-Baptiste Kempf
Win32: Remove quicktime from system codecs...
Seriously, FFmpeg is way better and free...
(cherry picked from commit 5a4a1bc22725d5639afe9192973952afec49b832)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=c0a90235ab6008ecbdab7773ebac8eed855dbba7
---
src/libvlc.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/libvlc.c b/src/libvlc.c
index cb73175..dd4412c 100644
--- a/src/libvlc.c
+++ b/src/libvlc.c
@@ -939,7 +939,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
if( psz_codecs )
{
char *psz_morecodecs;
- if( asprintf(&psz_morecodecs, "%s,dmo,quicktime", psz_codecs) != -1 )
+ if( asprintf(&psz_morecodecs, "%s,dmo", psz_codecs) != -1 )
{
var_SetString( p_libvlc, "codec", psz_morecodecs);
free( psz_morecodecs );
@@ -947,7 +947,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
free( psz_codecs );
}
else
- var_SetString( p_libvlc, "codec", "dmo,quicktime");
+ var_SetString( p_libvlc, "codec", "dmo");
}
#endif
More information about the vlc-commits
mailing list