diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-21 23:17:14 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-02-21 23:17:14 +0000 |
commit | ccff0b02565287e40e5eb90024f4fc4141804477 (patch) | |
tree | f641e1315dff84e3c6371a8553659b7f7c238d73 /src | |
parent | 5b46a65efaea9902516ba88503b258c140ad4fc5 (diff) | |
download | xine-lib-ccff0b02565287e40e5eb90024f4fc4141804477.tar.gz xine-lib-ccff0b02565287e40e5eb90024f4fc4141804477.tar.bz2 |
Declare vcdinfo_get_seg_resolution function in vcdplayer.c where it is used, but note that it's not exported by libvcd so it is unsafe to use.
CVS patchset: 8619
CVS date: 2007/02/21 23:17:14
Diffstat (limited to 'src')
-rw-r--r-- | src/input/vcd/vcdplayer.c | 8 |
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) |