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/utils.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/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 4a3ac72b6c..bb99a5a32d 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -482,7 +482,7 @@ static int video_get_buffer(AVCodecContext *s, AVFrame *pic) buf->linesize[i] = 0; } if (size[1] && !size[2]) - ff_set_systematic_pal2((uint32_t *)buf->data[1], s->pix_fmt); + avpriv_set_systematic_pal2((uint32_t *)buf->data[1], s->pix_fmt); buf->width = s->width; buf->height = s->height; buf->pix_fmt = s->pix_fmt; |