Commit 0b8acb0f authored by Jean-Baptiste Kempf's avatar 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.
parent bcfa778f
/***************************************************************************** /*****************************************************************************
* fourcc.c: libavcodec <-> libvlc conversion routines * fourcc.c: libavcodec <-> libvlc conversion routines
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2008 the VideoLAN team * Copyright (C) 1999-2009 the VideoLAN team
* $Id$ * $Id$
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
...@@ -195,7 +195,7 @@ static const struct ...@@ -195,7 +195,7 @@ static const struct
{ VLC_CODEC_V210, CODEC_ID_V210, VIDEO_ES }, { VLC_CODEC_V210, CODEC_ID_V210, VIDEO_ES },
#endif #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 }, { VLC_CODEC_FRWU, CODEC_ID_FRWU, VIDEO_ES },
#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