lavc: allow decoders to override frame parameters.

This commit is contained in:
Anton Khirnov 2013-02-11 08:09:02 +01:00
parent 3b199d29cd
commit 15ec0450b4

View File

@ -552,17 +552,24 @@ int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
switch (avctx->codec_type) {
case AVMEDIA_TYPE_VIDEO:
if (!frame->width)
frame->width = avctx->width;
if (!frame->height)
frame->height = avctx->height;
if (frame->format < 0)
frame->format = avctx->pix_fmt;
if (!frame->sample_aspect_ratio.num)
frame->sample_aspect_ratio = avctx->sample_aspect_ratio;
if ((ret = av_image_check_size(avctx->width, avctx->height, 0, avctx)) < 0)
return ret;
break;
case AVMEDIA_TYPE_AUDIO:
if (!frame->sample_rate)
frame->sample_rate = avctx->sample_rate;
if (frame->format < 0)
frame->format = avctx->sample_fmt;
if (!frame->channel_layout)
frame->channel_layout = avctx->channel_layout;
break;
default: return AVERROR(EINVAL);