mirror of https://github.com/mpv-player/mpv
aspect prescaling fix by magnus.pfeffer@epost.de
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6661 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
02521a39ae
commit
4442117dbe
|
@ -245,7 +245,7 @@ demuxer_t* demux_open_nuv ( demuxer_t* demuxer )
|
|||
1.33 == 4:3 aspect ratio.
|
||||
*/
|
||||
if(rtjpeg_fileheader.aspect == 1.0)
|
||||
sh_video->aspect = (float) 1.33;
|
||||
sh_video->aspect = (float) 4.0f/3.0f;
|
||||
|
||||
/* Get the FPS */
|
||||
sh_video->fps = rtjpeg_fileheader.fps;
|
||||
|
|
Loading…
Reference in New Issue