changeset 9178:b2bcaf612d5f

The two-digit aspect ratio displayed by -identify is not good enough to base automatic calculations on. Jonas Jensen <jbj@knef.dk>
author arpi
date Thu, 30 Jan 2003 21:42:35 +0000
parents 01a713dcaf23
children e93a0dd3ed56
files mplayer.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mplayer.c	Thu Jan 30 21:28:01 2003 +0000
+++ b/mplayer.c	Thu Jan 30 21:42:35 2003 +0000
@@ -1471,7 +1471,7 @@
     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)