mirror of
https://github.com/mpv-player/mpv
synced 2025-01-05 03:06:28 +01:00
include the right avcodec.h, consistently with the rest of mplayer
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17344 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
3b31501ff7
commit
f774739df9
@ -62,8 +62,10 @@ static void asf_descrambling(unsigned char **src,int len){
|
|||||||
*src = dst;
|
*src = dst;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef USE_LIBAVCODEC
|
#ifdef USE_LIBAVCODEC_SO
|
||||||
#include "avcodec.h"
|
#include <ffmpeg/avcodec.h>
|
||||||
|
#elif defined(USE_LIBAVCODEC)
|
||||||
|
#include "libavcodec/avcodec.h"
|
||||||
#else
|
#else
|
||||||
#define FF_INPUT_BUFFER_PADDING_SIZE 8
|
#define FF_INPUT_BUFFER_PADDING_SIZE 8
|
||||||
#endif
|
#endif
|
||||||
|
@ -32,8 +32,10 @@ Video codecs: (supported by RealPlayer8 for Linux)
|
|||||||
#include "stheader.h"
|
#include "stheader.h"
|
||||||
#include "bswap.h"
|
#include "bswap.h"
|
||||||
|
|
||||||
#ifdef USE_LIBAVCODEC
|
#ifdef USE_LIBAVCODEC_SO
|
||||||
#include "avcodec.h"
|
#include <ffmpeg/avcodec.h>
|
||||||
|
#elif defined(USE_LIBAVCODEC)
|
||||||
|
#include "libavcodec/avcodec.h"
|
||||||
#else
|
#else
|
||||||
#define FF_INPUT_BUFFER_PADDING_SIZE 8
|
#define FF_INPUT_BUFFER_PADDING_SIZE 8
|
||||||
#endif
|
#endif
|
||||||
|
@ -15,8 +15,10 @@
|
|||||||
#include "stheader.h"
|
#include "stheader.h"
|
||||||
#include "bswap.h"
|
#include "bswap.h"
|
||||||
|
|
||||||
#ifdef USE_LIBAVCODEC
|
#ifdef USE_LIBAVCODEC_SO
|
||||||
#include "avcodec.h"
|
#include <ffmpeg/avcodec.h>
|
||||||
|
#elif defined(USE_LIBAVCODEC)
|
||||||
|
#include "libavcodec/avcodec.h"
|
||||||
#else
|
#else
|
||||||
#define FF_INPUT_BUFFER_PADDING_SIZE 8
|
#define FF_INPUT_BUFFER_PADDING_SIZE 8
|
||||||
#endif
|
#endif
|
||||||
|
@ -22,8 +22,10 @@
|
|||||||
/* sub_cc (closed captions)*/
|
/* sub_cc (closed captions)*/
|
||||||
#include "sub_cc.h"
|
#include "sub_cc.h"
|
||||||
|
|
||||||
#ifdef USE_LIBAVCODEC
|
#ifdef USE_LIBAVCODEC_SO
|
||||||
#include "avcodec.h"
|
#include <ffmpeg/avcodec.h>
|
||||||
|
#elif defined(USE_LIBAVCODEC)
|
||||||
|
#include "libavcodec/avcodec.h"
|
||||||
#else
|
#else
|
||||||
#define FF_INPUT_BUFFER_PADDING_SIZE 8
|
#define FF_INPUT_BUFFER_PADDING_SIZE 8
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user