summaryrefslogtreecommitdiffstats
path: root/libswscale/yuv2rgb_altivec.c
diff options
context:
space:
mode:
authorlucabe <lucabe@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-20 12:13:57 +0000
committerlucabe <lucabe@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-07-20 12:13:57 +0000
commit0860745385f730be8615373ed834a652154e2516 (patch)
tree8cf981ea376bd06794527f82cf0f761be5158ce8 /libswscale/yuv2rgb_altivec.c
parent68deda7604af1d9270bdf5da5cc78a109272a70c (diff)
downloadmpv-0860745385f730be8615373ed834a652154e2516.tar.bz2
mpv-0860745385f730be8615373ed834a652154e2516.tar.xz
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19148 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/yuv2rgb_altivec.c')
-rw-r--r--libswscale/yuv2rgb_altivec.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libswscale/yuv2rgb_altivec.c b/libswscale/yuv2rgb_altivec.c
index 9a73b577ac..78662f2f12 100644
--- a/libswscale/yuv2rgb_altivec.c
+++ b/libswscale/yuv2rgb_altivec.c
@@ -74,8 +74,7 @@
#include "rgb2rgb.h"
#include "swscale.h"
#include "swscale_internal.h"
-#include "mangle.h"
-#include "libvo/img_format.h" //FIXME try to reduce dependency of such stuff
+#include "img_format.h" //FIXME try to reduce dependency of such stuff
#undef PROFILE_THE_BEAST
#undef INC_SCALING
@@ -868,7 +867,7 @@ altivec_yuv2packedX (SwsContext *c,
static int printed_error_message;
if(!printed_error_message) {
MSG_ERR("altivec_yuv2packedX doesn't support %s output\n",
- vo_format_name(c->dstFormat));
+ sws_format_name(c->dstFormat));
printed_error_message=1;
}
return;
@@ -943,7 +942,7 @@ altivec_yuv2packedX (SwsContext *c,
default:
/* Unreachable, I think. */
MSG_ERR("altivec_yuv2packedX doesn't support %s output\n",
- vo_format_name(c->dstFormat));
+ sws_format_name(c->dstFormat));
return;
}