From 710879686b7b68cccb662cf9e9337f3e5eec2fa4 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 5 Nov 2006 12:10:44 +0000 Subject: Always respect w and h params to mpcodecs_config_vo over sh->disp_w and sh->disp_h, otherwise it will break when the resolution changes mid-stream, like in http://samples.mplayerhq.hu/MPEG2/res_change_ffmpeg_aspect.ts git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20687 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/vd.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'libmpcodecs/vd.c') diff --git a/libmpcodecs/vd.c b/libmpcodecs/vd.c index e7c10056a2..9ad39fd936 100644 --- a/libmpcodecs/vd.c +++ b/libmpcodecs/vd.c @@ -140,13 +140,9 @@ int mpcodecs_config_vo(sh_video_t *sh, int w, int h, unsigned int preferred_outf int palette=0; int vocfg_flags=0; - if(!sh->disp_w || !sh->disp_h) - mp_msg(MSGT_DECVIDEO,MSGL_WARN, MSGTR_CodecDidNotSet); - /* XXX: HACK, if sh->disp_* aren't set, - * but we have w and h, set them :: atmos */ - if(!sh->disp_w && w) + if(w) sh->disp_w=w; - if(!sh->disp_h && h) + if(h) sh->disp_h=h; if(!sh->disp_w || !sh->disp_h) -- cgit v1.2.3