diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-12-08 15:20:46 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-01-26 13:02:33 +0100 |
commit | 04e12496094a878a04909c9f5e1188a3077079cc (patch) | |
tree | ba9eafcfa0fbf632446dedaa9b192460da6d394f /libavcodec | |
parent | 9221c0af772efe142c5572630500b7ab95024aa9 (diff) | |
download | ffmpeg-04e12496094a878a04909c9f5e1188a3077079cc.tar.gz |
iff: drop ff_ prefix from a static function.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/iff.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/iff.c b/libavcodec/iff.c index 99da7b5d61..584e7f983f 100644 --- a/libavcodec/iff.c +++ b/libavcodec/iff.c @@ -120,7 +120,7 @@ static av_always_inline uint32_t gray2rgb(const uint32_t x) { /** * Convert CMAP buffer (stored in extradata) to lavc palette format */ -static int ff_cmap_read_palette(AVCodecContext *avctx, uint32_t *pal) +static int cmap_read_palette(AVCodecContext *avctx, uint32_t *pal) { int count, i; @@ -265,7 +265,7 @@ static int decode_frame_ilbm(AVCodecContext *avctx, av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); return res; } else if (avctx->bits_per_coded_sample <= 8 && avctx->pix_fmt != AV_PIX_FMT_GRAY8) { - if ((res = ff_cmap_read_palette(avctx, (uint32_t*)s->frame.data[1])) < 0) + if ((res = cmap_read_palette(avctx, (uint32_t*)s->frame.data[1])) < 0) return res; } s->init = 1; @@ -322,7 +322,7 @@ static int decode_frame_byterun1(AVCodecContext *avctx, av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); return res; } else if (avctx->bits_per_coded_sample <= 8 && avctx->pix_fmt != AV_PIX_FMT_GRAY8) { - if ((res = ff_cmap_read_palette(avctx, (uint32_t*)s->frame.data[1])) < 0) + if ((res = cmap_read_palette(avctx, (uint32_t*)s->frame.data[1])) < 0) return res; } s->init = 1; |