]> git.sesse.net Git - vlc/commitdiff
* Update wavpack libavcodec version for trunk as well. fixes #828
authorDerk-Jan Hartman <hartman@videolan.org>
Mon, 13 Nov 2006 16:56:03 +0000 (16:56 +0000)
committerDerk-Jan Hartman <hartman@videolan.org>
Mon, 13 Nov 2006 16:56:03 +0000 (16:56 +0000)
modules/codec/ffmpeg/ffmpeg.c

index 81dbc5d3f488b3acc81d844dadf92d26ccfb0e9b..52935afadc9307fd92edff8f93eff7f8ebd2c68c 100644 (file)
@@ -1108,6 +1108,11 @@ static struct
       AUDIO_ES, "Shorten Lossless Audio" },
 #endif
 
+#if LIBAVCODEC_BUILD >= ((51<<16)+(16<<8)+0)
+    { VLC_FOURCC('w','v','p','k'), CODEC_ID_WAVPACK,
+      AUDIO_ES, "WavPack" },
+#endif
+
     /* PCM */
     { VLC_FOURCC('s','8',' ',' '), CODEC_ID_PCM_S8,
       AUDIO_ES, "PCM S8" },
@@ -1142,11 +1147,6 @@ static struct
     { VLC_FOURCC('u','l','a','w'), CODEC_ID_PCM_MULAW,
       AUDIO_ES, "PCM ULAW" },
 
-#if LIBAVCODEC_BUILD >= ((51<<16)+(15<<8)+1)
-    { VLC_FOURCC('w','v','p','k'), CODEC_ID_WAVPACK,
-      AUDIO_ES, "WavPack" },
-#endif
-
     { 0, 0, 0, 0 }
 };