From 1dbfe77925d859624a6ada592c80cf5c2e59dee7 Mon Sep 17 00:00:00 2001 From: nicodvb Date: Sat, 1 Sep 2007 15:54:45 +0000 Subject: added .stream_aspect to st_video_t: if non-zero and if not specified otherwise by the user the video pipeline will use it as current aspect ratio git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24319 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/vd.c | 1 + 1 file changed, 1 insertion(+) (limited to 'libmpcodecs') diff --git a/libmpcodecs/vd.c b/libmpcodecs/vd.c index 2eea3991f0..ad22041d9c 100644 --- a/libmpcodecs/vd.c +++ b/libmpcodecs/vd.c @@ -246,6 +246,7 @@ csp_again: // time to do aspect ratio corrections... if(movie_aspect>-1.0) sh->aspect = movie_aspect; // cmdline overrides autodetect + else if(sh->stream_aspect!=0.0) sh->aspect = sh->stream_aspect; // if(!sh->aspect) sh->aspect=1.0; if(opt_screen_size_x||opt_screen_size_y){ -- cgit v1.2.3