From 120f4d12b9232243c46d5898bf505f9789740c23 Mon Sep 17 00:00:00 2001 From: arpi Date: Tue, 31 Dec 2002 02:26:32 +0000 Subject: [PATCH] =?UTF-8?q?I've=20made=20some=20changes=20to=20the=20-iden?= =?UTF-8?q?tify=20handling.=20As=20previously=20the=20output=20for=20ID=5F?= =?UTF-8?q?VIDEO=5FFORMAT=20was=20only=20meaningful=20if=20it=20was=20a=20?= =?UTF-8?q?fourcc=20file,=20the=20output=20for=20mpeg1=20and=20mpeg2=20was?= =?UTF-8?q?=20jibberish.=20based=20on=20patch=20by=20Philip=20J=C3=A4genst?= =?UTF-8?q?edt=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8673 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mplayer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mplayer.c b/mplayer.c index 1d883ee1a9..58bd9523c6 100644 --- a/mplayer.c +++ b/mplayer.c @@ -1377,9 +1377,9 @@ if(identify) { if (sh_video) { /* Assume FOURCC if all bytes >= 0x20 (' ') */ if (sh_video->format >= 0x20202020) - mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_FORMAT=%.4s\n", &sh_video->format); + mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_FORMAT=%.4s\n", &sh_video->format); else - mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_FORMAT=%d\n", sh_video->format); + mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_FORMAT=0x%08X\n", sh_video->format); mp_msg(MSGT_GLOBAL,MSGL_INFO,"ID_VIDEO_BITRATE=%d\n", sh_video->i_bps*8); 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);