Mercurial > mplayer.hg
comparison libvo/vo_x11.c @ 22886:71b3e04d0555
"()" to "(void)" function param list fixes
patch from Stefan Huehner, stefan huehner org
author | uau |
---|---|
date | Sun, 01 Apr 2007 21:59:54 +0000 |
parents | d0b60d14d8d7 |
children | 17bf4f4b0715 |
comparison
equal
deleted
inserted
replaced
22885:2fb21c753674 | 22886:71b3e04d0555 |
---|---|
91 static int aspect; // 1<<16 based fixed point aspect, so that the aspect stays correct during resizing | 91 static int aspect; // 1<<16 based fixed point aspect, so that the aspect stays correct during resizing |
92 | 92 |
93 static int old_vo_dwidth = -1; | 93 static int old_vo_dwidth = -1; |
94 static int old_vo_dheight = -1; | 94 static int old_vo_dheight = -1; |
95 | 95 |
96 static void check_events() | 96 static void check_events(void) |
97 { | 97 { |
98 int ret = vo_x11_check_events(mDisplay); | 98 int ret = vo_x11_check_events(mDisplay); |
99 | 99 |
100 /* clear left over borders and redraw frame if we are paused */ | 100 /* clear left over borders and redraw frame if we are paused */ |
101 if (ret & VO_EVENT_EXPOSE && int_pause) | 101 if (ret & VO_EVENT_EXPOSE && int_pause) |