annotate libvo/geometry.h @ 24605:8a6f80593529

Disable unused query_format functions for now until they are investigated and properly used/fixed. Fixes warnings: vf_softskip.c:50: warning: 'query_format' defined but not used vf_tfields.c:433: warning: 'query_format' defined but not used vf_telecine.c:91: warning: 'query_format' defined but not used vf_telecine.c:105: warning: 'config' defined but not used
author diego
date Wed, 26 Sep 2007 23:00:43 +0000
parents 3f0d00abc073
children 917ae737b3d4
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 */
23689
3f0d00abc073 Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents: 11996
diff changeset
2 #ifndef GEOMETRY_H
3f0d00abc073 Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents: 11996
diff changeset
3 #define 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);
23689
3f0d00abc073 Do not use leading underscores in multiple inclusion guards, they are reserved.
diego
parents: 11996
diff changeset
9 #endif /* !GEOMETRY_H */