diff options
author | Alan Curry <pacman@TheWorld.com> | 2006-02-18 01:08:17 +0000 |
---|---|---|
committer | Alan Curry <pacman@TheWorld.com> | 2006-02-18 01:08:17 +0000 |
commit | cd92221a8dfa9cf2061e179d422961067d97eaf2 (patch) | |
tree | 63b05d77fee0becbe2ee9d07b8b456b77aa7793b /postproc | |
parent | b9a6fae9301ff45cab65508b9d15fb1b15d31214 (diff) | |
download | ffmpeg-cd92221a8dfa9cf2061e179d422961067d97eaf2.tar.gz |
Just a comment update, replacing a FIXME to reflect the new expectation of
how altivec_yuv2packedX is supposed to be used
Originally committed as revision 17643 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/yuv2rgb_altivec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/postproc/yuv2rgb_altivec.c b/postproc/yuv2rgb_altivec.c index 0590a21c34..5a6237e28f 100644 --- a/postproc/yuv2rgb_altivec.c +++ b/postproc/yuv2rgb_altivec.c @@ -853,7 +853,8 @@ altivec_yuv2packedX (SwsContext *c, case IMGFMT_BGR24: out_bgr24 (R,G,B,out); break; default: { - /* FIXME: either write more out_* macros or punt to yuv2packedXinC */ + /* If this is reached, the caller should have called yuv2packedXinC + instead. */ static int printed_error_message; if(!printed_error_message) { MSG_ERR("altivec_yuv2packedX doesn't support %s output\n", |