mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-29 04:17:06 +08:00
Use avcodec_set_dimensions()
Originally committed as revision 20591 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -3832,8 +3832,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0){
|
||||
if(context_init(h->thread_context[i]) < 0)
|
||||
return -1;
|
||||
|
||||
s->avctx->width = s->width;
|
||||
s->avctx->height = s->height;
|
||||
avcodec_set_dimensions(s->avctx, s->width, s->height);
|
||||
s->avctx->sample_aspect_ratio= h->sps.sar;
|
||||
if(!s->avctx->sample_aspect_ratio.den)
|
||||
s->avctx->sample_aspect_ratio.den = 1;
|
||||
|
Reference in New Issue
Block a user