diff options
author | Anton Khirnov <anton@khirnov.net> | 2014-11-14 15:16:01 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-01-27 09:14:39 +0100 |
commit | e44b58924fe7b180bf8b0c277c15d1a58210a0e9 (patch) | |
tree | 8a5f1e4668aa76616c0ca805eb5b02e21d657a1c /libavcodec/mpegvideo.c | |
parent | f771b3ab5d3c0b763ee356152be550f4121babd0 (diff) | |
download | ffmpeg-e44b58924fe7b180bf8b0c277c15d1a58210a0e9.tar.gz |
lavc: deprecate unused AVCodecContext.stream_codec_tag
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 876ec51fc1..b88dd58a1d 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -1288,8 +1288,6 @@ av_cold int ff_mpv_common_init(MpegEncContext *s) /* convert fourcc to upper case */ s->codec_tag = avpriv_toupper4(s->avctx->codec_tag); - s->stream_codec_tag = avpriv_toupper4(s->avctx->stream_codec_tag); - FF_ALLOCZ_OR_GOTO(s->avctx, s->picture, MAX_PICTURE_COUNT * sizeof(Picture), fail); for (i = 0; i < MAX_PICTURE_COUNT; i++) { |