ffmpeg: fix x86_64 build.

This commit is contained in:
Jérôme Duval 2015-11-21 12:01:01 +01:00
parent 4217c52a3b
commit 946163e318
2 changed files with 11 additions and 8 deletions

View File

@ -50,14 +50,6 @@
static int sDumpedPackets = 0;
#endif
#ifdef __x86_64
#define USE_SWS_FOR_COLOR_SPACE_CONVERSION 1
#else
#define USE_SWS_FOR_COLOR_SPACE_CONVERSION 0
// NOTE: David's color space conversion is much faster than the FFmpeg
// version. Perhaps the SWS code can be used for unsupported conversions?
// Otherwise the alternative code could simply be removed from this file.
#endif
#if LIBAVCODEC_VERSION_INT > ((54 << 16) | (50 << 8))
typedef AVCodecID CodecID;

View File

@ -20,6 +20,7 @@
extern "C" {
#include "avcodec.h"
#include "swresample.h"
#include "swscale.h"
}
@ -30,6 +31,16 @@ extern "C" {
#include "gfx_util.h"
#ifdef __x86_64
#define USE_SWS_FOR_COLOR_SPACE_CONVERSION 1
#else
#define USE_SWS_FOR_COLOR_SPACE_CONVERSION 0
// NOTE: David's color space conversion is much faster than the FFmpeg
// version. Perhaps the SWS code can be used for unsupported conversions?
// Otherwise the alternative code could simply be removed from this file.
#endif
class AVCodecDecoder : public Decoder {
public:
AVCodecDecoder();