mirror of https://github.com/mpv-player/mpv
The two-digit aspect ratio displayed by -identify is not good enough to
base automatic calculations on. Jonas Jensen <jbj@knef.dk> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9179 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
1de6f0cf9e
commit
e7f9c836a1
|
@ -1471,7 +1471,7 @@ if(identify) {
|
|||
mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_WIDTH=%d\n", sh_video->disp_w);
|
||||
mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_HEIGHT=%d\n", sh_video->disp_h);
|
||||
mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_FPS=%5.3f\n", sh_video->fps);
|
||||
mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_ASPECT=%1.2f\n", sh_video->aspect);
|
||||
mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_ASPECT=%1.4f\n", sh_video->aspect);
|
||||
}
|
||||
if (sh_audio) {
|
||||
if (sh_audio->codec)
|
||||
|
|
Loading…
Reference in New Issue