summaryrefslogtreecommitdiffstats
path: root/spudec.c
diff options
context:
space:
mode:
authorrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-31 02:44:54 +0000
committerrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-31 02:44:54 +0000
commitc0926ecd8e8a20b18412550f5ac6f7592f182dbb (patch)
tree80ff686b54accbf0c49ccf567cca6428b7bc05f8 /spudec.c
parent6c417510ba974644fa81a672fad6d253f3204c23 (diff)
downloadmpv-c0926ecd8e8a20b18412550f5ac6f7592f182dbb.tar.bz2
mpv-c0926ecd8e8a20b18412550f5ac6f7592f182dbb.tar.xz
Fix build with shared libavutil. Approved by Diego.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21794 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'spudec.c')
-rw-r--r--spudec.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/spudec.c b/spudec.c
index f5eb20f786..ebaba6bd5f 100644
--- a/spudec.c
+++ b/spudec.c
@@ -23,7 +23,11 @@
#include <math.h>
#include "libvo/video_out.h"
#include "spudec.h"
+#ifdef USE_LIBAVUTIL_SO
+#include <ffmpeg/avutil.h>
+#else
#include "avutil.h"
+#endif
#include "libswscale/swscale.h"
#define MIN(a, b) ((a)<(b)?(a):(b))