diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-29 17:57:40 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-30 09:07:43 +0200 |
commit | e1197b9e1746c03b1d13d816d1569aeaf1b71ecc (patch) | |
tree | 79cf0265bec586cfd7c155e03cc5879a6dda9f37 /libswscale/ppc/yuv2rgb_altivec.c | |
parent | 2c10ee23583d80a44f65a2199cef96eafaaceade (diff) | |
download | ffmpeg-e1197b9e1746c03b1d13d816d1569aeaf1b71ecc.tar.gz |
swscale: remove sws_format_name()
Use av_get_pix_fmt_name() instead.
Diffstat (limited to 'libswscale/ppc/yuv2rgb_altivec.c')
-rw-r--r-- | libswscale/ppc/yuv2rgb_altivec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/ppc/yuv2rgb_altivec.c b/libswscale/ppc/yuv2rgb_altivec.c index 11d12150a8..ad956b92a1 100644 --- a/libswscale/ppc/yuv2rgb_altivec.c +++ b/libswscale/ppc/yuv2rgb_altivec.c @@ -718,7 +718,7 @@ ff_yuv2packedX_altivec(SwsContext *c, const int16_t *lumFilter, static int printed_error_message; if (!printed_error_message) { av_log(c, AV_LOG_ERROR, "altivec_yuv2packedX doesn't support %s output\n", - sws_format_name(c->dstFormat)); + av_get_pix_fmt_name(c->dstFormat)); printed_error_message=1; } return; @@ -793,7 +793,7 @@ ff_yuv2packedX_altivec(SwsContext *c, const int16_t *lumFilter, default: /* Unreachable, I think. */ av_log(c, AV_LOG_ERROR, "altivec_yuv2packedX doesn't support %s output\n", - sws_format_name(c->dstFormat)); + av_get_pix_fmt_name(c->dstFormat)); return; } |