Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-04-12 04:55:19 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-04-12 05:21:12 +0300
commit196cfc278d2bce03d03ef95b5b34dfd9689ddb60 (patch)
treee988f1c895f7a7b9a758e1e758d84a615fbcbc3a /libavformat
parent901b0f1a219e96d008c801dbd99bb21aae0aea4e (diff)
avformat/utils: use av_codec_g/set_lowres()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 229c0776ed..d6aba5a237 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -3766,7 +3766,7 @@ FF_ENABLE_DEPRECATION_WARNINGS
if (ret < 0)
goto find_stream_info_err;
// The decoder might reduce the video size by the lowres factor.
- if (st->internal->avctx->lowres && orig_w) {
+ if (av_codec_get_lowres(st->internal->avctx) && orig_w) {
st->codecpar->width = orig_w;
st->codecpar->height = orig_h;
}
@@ -3780,8 +3780,8 @@ FF_DISABLE_DEPRECATION_WARNINGS
// The old API (AVStream.codec) "requires" the resolution to be adjusted
// by the lowres factor.
- if (st->internal->avctx->lowres && st->internal->avctx->width) {
- st->codec->lowres = st->internal->avctx->lowres;
+ if (av_codec_get_lowres(st->internal->avctx) && st->internal->avctx->width) {
+ av_codec_set_lowres(st->codec, av_codec_get_lowres(st->internal->avctx));
st->codec->width = st->internal->avctx->width;
st->codec->height = st->internal->avctx->height;
st->codec->coded_width = st->internal->avctx->coded_width;