summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/input/vcd/vcdplayer.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/input/vcd/vcdplayer.c b/src/input/vcd/vcdplayer.c
index 27f726e3c..502d736cc 100644
--- a/src/input/vcd/vcdplayer.c
+++ b/src/input/vcd/vcdplayer.c
@@ -1,5 +1,5 @@
/*
- $Id: vcdplayer.c,v 1.19 2005/06/20 02:17:41 rockyb Exp $
+ $Id: vcdplayer.c,v 1.20 2007/02/21 23:17:14 dgp85 Exp $
Copyright (C) 2002, 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
@@ -46,6 +46,12 @@
#include "vcdplayer.h"
#include "vcdio.h"
+/* This function is _not_ exported by libvcd, its usage should be avoided, most
+ * likely.
+ */
+void vcdinfo_get_seg_resolution(const vcdinfo_obj_t *p_vcdinfo, segnum_t i_seg,
+ /*out*/ uint16_t *max_x, /*out*/ uint16_t *max_y);
+
#define LOG_ERR(p_vcdplayer, s, args...) \
if (p_vcdplayer != NULL && p_vcdplayer->log_err != NULL) \
p_vcdplayer->log_err("%s: "s, __func__ , ##args)