summaryrefslogtreecommitdiffstats
path: root/postproc/swscale_internal.h
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-05-01 19:14:27 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-05-01 19:14:27 +0000
commita7b309bb0a3da5f1a24bb02e9b0f2a2450520745 (patch)
tree3cddf90bbf05d7ecdbc4b7310138fb4759a9da7e /postproc/swscale_internal.h
parentb2f880a028ccd39a54ee5ed6b10c5ab906bec095 (diff)
downloadmpv-a7b309bb0a3da5f1a24bb02e9b0f2a2450520745.tar.bz2
mpv-a7b309bb0a3da5f1a24bb02e9b0f2a2450520745.tar.xz
removed the last mp_msg :)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10047 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc/swscale_internal.h')
-rw-r--r--postproc/swscale_internal.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/postproc/swscale_internal.h b/postproc/swscale_internal.h
index 85caead3ad..606d8a173a 100644
--- a/postproc/swscale_internal.h
+++ b/postproc/swscale_internal.h
@@ -19,6 +19,15 @@
#ifndef SWSCALE_INTERNAL_H
#define SWSCALE_INTERNAL_H
+#include "../mp_msg.h"
+
+#define MSG_WARN(args...) mp_msg(MSGT_SWS,MSGL_WARN, ##args )
+#define MSG_FATAL(args...) mp_msg(MSGT_SWS,MSGL_FATAL, ##args )
+#define MSG_ERR(args...) mp_msg(MSGT_SWS,MSGL_ERR, ##args )
+#define MSG_V(args...) mp_msg(MSGT_SWS,MSGL_V, ##args )
+#define MSG_DBG2(args...) mp_msg(MSGT_SWS,MSGL_DBG2, ##args )
+#define MSG_INFO(args...) mp_msg(MSGT_SWS,MSGL_INFO, ##args )
+
#define MAX_FILTER_SIZE 256
typedef int (*SwsFunc)(struct SwsContext *context, uint8_t* src[], int srcStride[], int srcSliceY,