diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-05-01 19:14:27 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-05-01 19:14:27 +0000 |
commit | b706b007a45d18ffac87fb26faa1dcd5df86ffa7 (patch) | |
tree | 45eedd91fdca8101d768c30c579ebe97a9cfc458 /postproc/swscale_internal.h | |
parent | 5fe03e3837516732df41c339ebe471a86b6e8bd5 (diff) | |
download | ffmpeg-b706b007a45d18ffac87fb26faa1dcd5df86ffa7.tar.gz |
removed the last mp_msg :)
Originally committed as revision 10047 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale_internal.h')
-rw-r--r-- | postproc/swscale_internal.h | 9 |
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, |