1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-11 08:37:59 +00:00

wrong include on shared lavc

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11411 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
iive 2003-11-07 23:32:38 +00:00
parent 679d6f09b3
commit 258a4950a4

View File

@ -74,7 +74,13 @@
#ifdef USE_LIBAVCODEC
// for lavc audio encoding
#ifdef USE_LIBAVCODEC_SO
#include <ffmpeg/avcodec.h>
#else
#include "libavcodec/avcodec.h"
#endif
static AVCodec *lavc_acodec;
static AVCodecContext *lavc_actx = NULL;
extern char *lavc_param_acodec;