diff options
author | 2010-03-18 23:32:14 +0000 | |
---|---|---|
committer | 2010-03-18 23:32:14 +0000 | |
commit | 0e1acdbf9b8d5f535672d999a388de266681e194 (patch) | |
tree | db980e6e1c5cb0e3a0061e054afa370ec36bfef8 /libmpcodecs | |
parent | e3e6f842584d582150221f16089283b7e39e7eb5 (diff) |
Reuse codec path variable used in the binary loader in the XAnim loader.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30935 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r-- | libmpcodecs/vd_xanim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpcodecs/vd_xanim.c b/libmpcodecs/vd_xanim.c index a9926daeb2..dc8152f3d8 100644 --- a/libmpcodecs/vd_xanim.c +++ b/libmpcodecs/vd_xanim.c @@ -33,6 +33,7 @@ #include "mp_msg.h" #include "vd_internal.h" +#include "loader/codecpath.h" static const vd_info_t info = { "XAnim codecs", @@ -664,7 +665,6 @@ static int control(sh_video_t *sh,int cmd,void* arg,...){ static int init(sh_video_t *sh) { vd_xanim_ctx *priv; - char *def_path = BINARY_CODECS_PATH; char dll[1024]; XA_CODEC_HDR codec_hdr; int i; |