summaryrefslogtreecommitdiffstats
path: root/postproc/yuv2rgb.c
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/yuv2rgb.c
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/yuv2rgb.c')
-rw-r--r--postproc/yuv2rgb.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/postproc/yuv2rgb.c b/postproc/yuv2rgb.c
index d4209cbdbd..24295d014d 100644
--- a/postproc/yuv2rgb.c
+++ b/postproc/yuv2rgb.c
@@ -41,7 +41,6 @@
#include "swscale.h"
#include "swscale_internal.h"
#include "../mangle.h"
-#include "../mp_msg.h"
#include "../libvo/img_format.h" //FIXME try to reduce dependency of such stuff
#ifdef HAVE_MLIB
@@ -608,7 +607,7 @@ SwsFunc yuv2rgb_get_func_ptr (SwsContext *c)
if(t) return t;
}
#endif
- mp_msg(MSGT_SWS,MSGL_WARN,"No accelerated colorspace conversion found\n");
+ MSG_WARN("No accelerated colorspace conversion found\n");
switch(c->dstFormat){
case IMGFMT_RGB32:
@@ -826,7 +825,7 @@ int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange,
default:
table_start= NULL;
- mp_msg(MSGT_SWS,MSGL_ERR,"%ibpp not supported by yuv2rgb\n", bpp);
+ MSG_ERR("%ibpp not supported by yuv2rgb\n", bpp);
//free mem?
return -1;
}