]> git.sesse.net Git - vlc/commitdiff
Fix avcodec module build for FRWU.
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 19 Oct 2009 18:56:45 +0000 (20:56 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 21 Oct 2009 21:14:48 +0000 (23:14 +0200)
For some reason, libavcodec deverlopers didn't update LIBAVCODEC_VERSION_MICRO when introducing the new CODEC_ID_FRWU. We will then have to wait for the next bump to have it enabled.

modules/codec/avcodec/fourcc.c

index 7705e783960e1583d0c1f2f11db38155f0df51e7..94b5d8f89acc1b738ed6a967a37ee72e64c975c4 100644 (file)
@@ -1,7 +1,7 @@
 /*****************************************************************************
  * fourcc.c: libavcodec <-> libvlc conversion routines
  *****************************************************************************
- * Copyright (C) 1999-2008 the VideoLAN team
+ * Copyright (C) 1999-2009 the VideoLAN team
  * $Id$
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
@@ -195,7 +195,7 @@ static const struct
     { VLC_CODEC_V210, CODEC_ID_V210, VIDEO_ES },
 #endif
 
-#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 37, 0 )
+#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 37, 1 )
     { VLC_CODEC_FRWU, CODEC_ID_FRWU, VIDEO_ES },
 #endif