diff options
author | Luca Abeni <lucabe72@email.it> | 2006-07-20 12:13:57 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2006-07-20 12:13:57 +0000 |
commit | 94c4def23c3b212dd0f8fde902cecf47e5bee1c2 (patch) | |
tree | ba231cc7583e8f1a7b695517df31aa686034ac6a /libswscale/yuv2rgb_altivec.c | |
parent | 918a45917c4cab7f830c05d728f257a7c0ce2f34 (diff) | |
download | ffmpeg-94c4def23c3b212dd0f8fde902cecf47e5bee1c2.tar.gz |
Use libavutil in libswscale, and allow it to be built out of the mplayer tree
Originally committed as revision 19148 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/yuv2rgb_altivec.c')
-rw-r--r-- | libswscale/yuv2rgb_altivec.c | 7 |
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; } |