[vlc-devel] commit: Fix avcodec module build for FRWU. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Wed Oct 21 23:15:02 CEST 2009
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Oct 19 20:56:45 2009 +0200| [0b8acb0f84a2a3a506d5b7a9487eca6ccd636517] | committer: Jean-Baptiste Kempf
Fix avcodec module build for FRWU.
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.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0b8acb0f84a2a3a506d5b7a9487eca6ccd636517
---
modules/codec/avcodec/fourcc.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/codec/avcodec/fourcc.c b/modules/codec/avcodec/fourcc.c
index 7705e78..94b5d8f 100644
--- a/modules/codec/avcodec/fourcc.c
+++ b/modules/codec/avcodec/fourcc.c
@@ -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 at 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
More information about the vlc-devel
mailing list