Commit 6cb520b5 authored by Ilkka Ollakka's avatar Ilkka Ollakka

avcodec: make sure visible_width/height is defined

parent 9603fbc7
...@@ -147,6 +147,11 @@ static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec, ...@@ -147,6 +147,11 @@ static inline picture_t *ffmpeg_NewPictBuf( decoder_t *p_dec,
p_dec->fmt_out.video.i_visible_width = p_context->width; p_dec->fmt_out.video.i_visible_width = p_context->width;
p_dec->fmt_out.video.i_visible_height = p_context->height; p_dec->fmt_out.video.i_visible_height = p_context->height;
} }
else
{
p_dec->fmt_out.video.i_visible_width = width;
p_dec->fmt_out.video.i_visible_height = height;
}
if( !p_sys->p_va && GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) ) if( !p_sys->p_va && GetVlcChroma( &p_dec->fmt_out.video, p_context->pix_fmt ) )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment