diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-17 10:12:51 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-20 21:06:58 +0200 |
commit | 0842d58998f441768b5e4376aa0c1d7be0e07a8b (patch) | |
tree | 7a026d410b1cf8642f9814260e80b9c9d2a7a9a2 /libavcodec/mpegvideo.c | |
parent | 9f51c682ee83ecf0995648d4574ac09b52bbcb24 (diff) | |
download | ffmpeg-0842d58998f441768b5e4376aa0c1d7be0e07a8b.tar.gz |
lavc: use avpriv_ prefix for ff_toupper4.
It's used in lavf.
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 7b0cac19e3..c1cd1f7a1d 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -646,9 +646,9 @@ av_cold int MPV_common_init(MpegEncContext *s) yc_size = y_size + 2 * c_size; /* convert fourcc to upper case */ - s->codec_tag = ff_toupper4(s->avctx->codec_tag); + s->codec_tag = avpriv_toupper4(s->avctx->codec_tag); - s->stream_codec_tag = ff_toupper4(s->avctx->stream_codec_tag); + s->stream_codec_tag = avpriv_toupper4(s->avctx->stream_codec_tag); s->avctx->coded_frame= (AVFrame*)&s->current_picture; |