mirror of https://github.com/mpv-player/mpv
Fix build with shared libavutil. Approved by Diego.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21794 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
6c417510ba
commit
c0926ecd8e
|
@ -1,4 +1,8 @@
|
|||
#ifdef USE_LIBAVUTIL_SO
|
||||
#include <ffmpeg/avutil.h>
|
||||
#else
|
||||
#include "avutil.h"
|
||||
#endif
|
||||
#include "img_format.h"
|
||||
|
||||
enum PixelFormat imgfmt2pixfmt(int fmt)
|
||||
|
|
|
@ -29,7 +29,11 @@
|
|||
#include <malloc.h>
|
||||
#endif
|
||||
|
||||
#ifdef USE_LIBAVUTIL_SO
|
||||
#include <ffmpeg/avutil.h>
|
||||
#else
|
||||
#include "avutil.h"
|
||||
#endif
|
||||
#include "img_format.h"
|
||||
#include "mp_image.h"
|
||||
#include "vf.h"
|
||||
|
|
|
@ -29,7 +29,11 @@
|
|||
#include <malloc.h>
|
||||
#endif
|
||||
|
||||
#ifdef USE_LIBAVUTIL_SO
|
||||
#include <ffmpeg/avutil.h>
|
||||
#else
|
||||
#include "avutil.h"
|
||||
#endif
|
||||
#include "img_format.h"
|
||||
#include "mp_image.h"
|
||||
#include "vf.h"
|
||||
|
|
Loading…
Reference in New Issue