summaryrefslogtreecommitdiffstats
path: root/xacodec.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-22 17:49:17 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-22 17:49:17 +0000
commitaafae55a5b540e5abb7f48e9d96a08f052c1a4d6 (patch)
tree4b513a9b0b9e9db1b726d9333918e64f089c5acf /xacodec.c
parenta21a9c496c082497ecd030b8c3da10f9c58d0bd5 (diff)
downloadmpv-aafae55a5b540e5abb7f48e9d96a08f052c1a4d6.tar.bz2
mpv-aafae55a5b540e5abb7f48e9d96a08f052c1a4d6.tar.xz
mplayerization
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2377 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'xacodec.c')
-rw-r--r--xacodec.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/xacodec.c b/xacodec.c
index 5bc11098da..0d38241ea9 100644
--- a/xacodec.c
+++ b/xacodec.c
@@ -6,21 +6,25 @@
*/
#include <stdio.h>
+#include <stdlib.h>
+
#include <dlfcn.h> /* dlsym, dlopen, dlclose */
#include <stdarg.h> /* va_alist, va_start, va_end */
#include <errno.h> /* strerror, errno */
+#include "config.h"
+#define XACODEC_PATH "/usr/lib/xanim"
+
#include "mp_msg.h"
-#include "aclib/byteswap.h"
+#include "bswap.h"
#include "stream.h"
#include "demuxer.h"
#include "codec-cfg.h"
-#include "wine/avifmt.h"
-#include "wine/vfw.h"
-#include "wine/mmreg.h"
#include "stheader.h"
-#include "loader/DirectShow/default.h"
+
+//#include "loader/DirectShow/default.h"
+
#include "libvo/img_format.h"
#include "xacodec.h"
@@ -247,7 +251,7 @@ int xacodec_init_video(sh_video_t *vidinfo, int out_format)
vo_format_name(out_format));
return(0);
}
- odprintf(LOG_INFO, "xacodec: querying for %dx%d %dbit [fourcc: %4x] (%s)...\n",
+ mp_msg(MSGT_DECVIDEO,MSGL_INFO, "xacodec: querying for %dx%d %dbit [fourcc: %4x] (%s)...\n",
codec_hdr.x, codec_hdr.y, codec_hdr.depth, codec_hdr.compression,
codec_hdr.description);
@@ -275,7 +279,7 @@ int xacodec_init_video(sh_video_t *vidinfo, int out_format)
if (vidinfo->our_out_buffer == NULL)
{
- odprintf(LOG_ERROR, "cannot allocate memory for output: %s",
+ mp_msg(MSGT_DECVIDEO,MSGL_ERR, "cannot allocate memory for output: %s",
strerror(errno));
return(0);
}