]> git.sesse.net Git - vlc/commitdiff
Win32: Remove quicktime from system codecs...
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 19 Jul 2010 21:45:38 +0000 (23:45 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 19 Jul 2010 21:45:38 +0000 (23:45 +0200)
Seriously, FFmpeg is way better and free...

src/libvlc.c

index 68fa41887e80045521216bbb53d49b083db26c79..a567ec9b9e24d2c92d56c417bf4cb84fb6ad8bde 100644 (file)
@@ -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