Commit c0a90235 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Win32: Remove quicktime from system codecs...

Seriously, FFmpeg is way better and free...
(cherry picked from commit 5a4a1bc22725d5639afe9192973952afec49b832)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 99081143
...@@ -939,7 +939,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -939,7 +939,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
if( psz_codecs ) if( psz_codecs )
{ {
char *psz_morecodecs; 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); var_SetString( p_libvlc, "codec", psz_morecodecs);
free( psz_morecodecs ); free( psz_morecodecs );
...@@ -947,7 +947,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc, ...@@ -947,7 +947,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
free( psz_codecs ); free( psz_codecs );
} }
else else
var_SetString( p_libvlc, "codec", "dmo,quicktime"); var_SetString( p_libvlc, "codec", "dmo");
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment