diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-01 14:02:08 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-07 11:45:30 +0200 |
commit | 22333a6b19f59ebc83933b910069d00c445d01ed (patch) | |
tree | 143d3dd337af034562802e529489d21964a27cd6 /libavcodec/utils.c | |
parent | 314374e57978bd215ae42d5444f0e76f2bebdc27 (diff) | |
download | ffmpeg-22333a6b19f59ebc83933b910069d00c445d01ed.tar.gz |
lavc: add width and height fields to AVFrame
width and height are per-frame properties, setting these values in
AVFrame simplify the operation of extraction of that information,
since avoids the need to check the codec/stream context.
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index fd1c09063f..dc26092dd1 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -739,6 +739,10 @@ int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *pi picture->pkt_pos= avpkt->pos; if (!picture->sample_aspect_ratio.num) picture->sample_aspect_ratio = avctx->sample_aspect_ratio; + if (!picture->width) + picture->width = avctx->width; + if (!picture->height) + picture->height = avctx->height; } emms_c(); //needed to avoid an emms_c() call before every return; |