summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.h
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/video_out.h')
-rw-r--r--libvo/video_out.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/libvo/video_out.h b/libvo/video_out.h
index aa60f7549e..c4bfb386af 100644
--- a/libvo/video_out.h
+++ b/libvo/video_out.h
@@ -241,4 +241,20 @@ extern float vo_fps;
extern char *vo_subdevice;
+#if defined(HAVE_FBDEV)||defined(HAVE_VESA)
+
+typedef struct {
+ float min;
+ float max;
+ } range_t;
+
+extern float range_max(range_t *r);
+extern int in_range(range_t *r, float f);
+extern range_t *str2range(char *s);
+extern char *monitor_hfreq_str;
+extern char *monitor_vfreq_str;
+extern char *monitor_dotclock_str;
+
+#endif
+
#endif