annotate libvo/geometry.h @ 27380:843db879a6b2

Fixes unsafe 'angle' command with get_property() call. Without it, MPlayer segv trying to dereference NULL demuxer. Patch by Mathieu Schroeter (mathieu dot schroeter at gamesover dot ch)
author ben
date Mon, 04 Aug 2008 13:33:22 +0000
parents 4129c8cfa742
children d97a607821f1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7866
732a8bfc7681 Added the -geometry option (supports fbdev and tdfxfb drivers)
mark
parents:
diff changeset
1 /* This file (C) Mark Zealey <mark@zealos.org 2002, released under GPL */
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25546
diff changeset
2 #ifndef MPLAYER_GEOMETRY_H
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25546
diff changeset
3 #define MPLAYER_GEOMETRY_H
7866
732a8bfc7681 Added the -geometry option (supports fbdev and tdfxfb drivers)
mark
parents:
diff changeset
4
732a8bfc7681 Added the -geometry option (supports fbdev and tdfxfb drivers)
mark
parents:
diff changeset
5 extern char *vo_geometry;
11125
d9478c8e5ffe fix aspect hack
attila
parents: 9517
diff changeset
6 extern int geometry_wh_changed;
11996
398c24cecdc7 dont mess with the window position in xinerama when -geometry changes it.
attila
parents: 11125
diff changeset
7 extern int geometry_xy_changed;
9517
d65ddafbc404 clean up of -geometry code.
attila
parents: 8745
diff changeset
8 int geometry(int *xpos, int *ypos, int *widw, int *widh, int scrw, int scrh);
25546
917ae737b3d4 Consistently use just the name of the #ifdef directive in #endif comments.
diego
parents: 23689
diff changeset
9
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25546
diff changeset
10 #endif /* MPLAYER_GEOMETRY_H */