diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-04 21:15:51 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-13 19:59:20 +0200 |
commit | 52d113ee06ba136e530c11e651a5ae085384d49c (patch) | |
tree | 578e2ee8fa930d60d628fb3ecb011bb27fdcedd1 /libavcodec/bmpenc.c | |
parent | b6f8d635f27bd1234508679c93e04f60a36c2f1e (diff) | |
download | ffmpeg-52d113ee06ba136e530c11e651a5ae085384d49c.tar.gz |
avutil: Rename ff_set_systematic_pal2() ---> avpriv_set_systematic_pal2()
Functions used across libraries should have avpriv_ and not ff_ prefixes.
Diffstat (limited to 'libavcodec/bmpenc.c')
-rw-r--r-- | libavcodec/bmpenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bmpenc.c b/libavcodec/bmpenc.c index a798f34409..d27282dc13 100644 --- a/libavcodec/bmpenc.c +++ b/libavcodec/bmpenc.c @@ -93,7 +93,7 @@ static int bmp_encode_frame(AVCodecContext *avctx, AVPacket *pkt, case AV_PIX_FMT_RGB4_BYTE: case AV_PIX_FMT_BGR4_BYTE: case AV_PIX_FMT_GRAY8: - ff_set_systematic_pal2((uint32_t*)p->data[1], avctx->pix_fmt); + avpriv_set_systematic_pal2((uint32_t*)p->data[1], avctx->pix_fmt); case AV_PIX_FMT_PAL8: pal = (uint32_t *)p->data[1]; break; |