diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-01-21 03:32:51 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-01-21 03:32:51 +0000 |
commit | f82784e051769a6674639aa0e5080430b4ceaf21 (patch) | |
tree | 0939db813174c649d8b97fff0aeba62766cfdbd5 /src | |
parent | a9ab2429f5b734f832349f4c3d32a23faebd2343 (diff) | |
parent | 52e5b0620e7579faa998e53e3e3e00f0449d2387 (diff) | |
download | xine-lib-f82784e051769a6674639aa0e5080430b4ceaf21.tar.gz xine-lib-f82784e051769a6674639aa0e5080430b4ceaf21.tar.bz2 |
Merge.
Diffstat (limited to 'src')
-rw-r--r-- | src/combined/ffmpeg/ff_video_decoder.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/combined/ffmpeg/ff_video_decoder.c b/src/combined/ffmpeg/ff_video_decoder.c index 876ac2217..727508847 100644 --- a/src/combined/ffmpeg/ff_video_decoder.c +++ b/src/combined/ffmpeg/ff_video_decoder.c @@ -51,22 +51,6 @@ # include <libpostproc/postprocess.h> #endif -/* As of 2010-01-17, libavutil trunk doesn't define a few useful macros. - * While we may still be able to #define things to cause them to be used, - * it's safest to assume that they'll go away. - */ -#ifndef PIX_FMT_RGB32 -# ifdef WORDS_BIGENDIAN -# define PIX_FMT_RGB32 PIX_FMT_ARGB -# define PIX_FMT_RGB555 PIX_FMT_RGB555BE -# define PIX_FMT_RGB565 PIX_FMT_RGB565BE -# else -# define PIX_FMT_RGB32 PIX_FMT_BGRA -# define PIX_FMT_RGB555 PIX_FMT_RGB555LE -# define PIX_FMT_RGB565 PIX_FMT_RGB565LE -# endif -#endif - #define VIDEOBUFSIZE (128*1024) #define SLICE_BUFFER_SIZE (1194*1024) |