[vlc-commits] commit: Win32: Remove quicktime from system codecs... (Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Mon Jul 19 23:45:50 CEST 2010
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Jul 19 23:45:38 2010 +0200| [5a4a1bc22725d5639afe9192973952afec49b832] | committer: Jean-Baptiste Kempf
Win32: Remove quicktime from system codecs...
Seriously, FFmpeg is way better and free...
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5a4a1bc22725d5639afe9192973952afec49b832
---
src/libvlc.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/libvlc.c b/src/libvlc.c
index 68fa418..a567ec9 100644
--- a/src/libvlc.c
+++ b/src/libvlc.c
@@ -916,7 +916,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 );
@@ -924,7 +924,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