summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-24 16:22:10 +0000
committerpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-24 16:22:10 +0000
commit9993d01e764c26bbdd8813638dbcab74604eb506 (patch)
tree88adf901a5147f9e4c7a885395d090af29894881 /libvo
parentf8f7a0f658a4fb242ef69626329cde6cbdd63b56 (diff)
downloadmpv-9993d01e764c26bbdd8813638dbcab74604eb506.tar.bz2
mpv-9993d01e764c26bbdd8813638dbcab74604eb506.tar.xz
did not compile with gcc-3
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2454 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/vo_gl2.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/libvo/vo_gl2.c b/libvo/vo_gl2.c
index 24dcb4be2f..237db2443b 100644
--- a/libvo/vo_gl2.c
+++ b/libvo/vo_gl2.c
@@ -910,16 +910,19 @@ init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint3
drawTextureDisplay ();
+#ifdef HAVE_MMX
printf("[gl2] Using image_bpp=%d, image_bytes=%d, isBGR=%d, \n\tgl_bitmap_format=%s, gl_bitmap_type=%s, \n\tgl_alignment=%d, rgb_size=%d (%d,%d,%d), a_sz=%d, \n\tgl_internal_format=%s, tweaks=%s\n",
image_bpp, image_bytes, image_mode==MODE_BGR,
gl_bitmap_format_s, gl_bitmap_type_s, gl_alignment,
rgb_sz, r_sz, g_sz, b_sz, a_sz, gl_internal_format_s,
-#ifdef HAVE_MMX
- "mmx_bpp"
+ "mmx_bpp");
#else
- "none"
+ printf("[gl2] Using image_bpp=%d, image_bytes=%d, isBGR=%d, \n\tgl_bitmap_format=%s, gl_bitmap_type=%s, \n\tgl_alignment=%d, rgb_size=%d (%d,%d,%d), a_sz=%d, \n\tgl_internal_format=%s, tweaks=%s\n",
+ image_bpp, image_bytes, image_mode==MODE_BGR,
+ gl_bitmap_format_s, gl_bitmap_type_s, gl_alignment,
+ rgb_sz, r_sz, g_sz, b_sz, a_sz, gl_internal_format_s,
+ "none");
#endif
-);
resize(d_width,d_height);