summaryrefslogtreecommitdiff
path: root/src/xine-engine/xine.c
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-03-23 18:56:55 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-03-23 18:56:55 +0000
commitb2dfbe82d7c68198548995aa309a8883ef3da521 (patch)
treedab817ecd8e1a32a9932f89280b865592a888329 /src/xine-engine/xine.c
parent1886d565632d0cafc381a97e066a122f6a9ccf2c (diff)
downloadxine-lib-b2dfbe82d7c68198548995aa309a8883ef3da521.tar.gz
xine-lib-b2dfbe82d7c68198548995aa309a8883ef3da521.tar.bz2
moved network buffering to a seperate file so all network/stream input plugins
can share that code. added ability to control scr adjustability to metronom (get/set options) so strict_scr is no longer needed. CVS patchset: 1620 CVS date: 2002/03/23 18:56:55
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r--src/xine-engine/xine.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c
index f69b944e8..2a8b6b071 100644
--- a/src/xine-engine/xine.c
+++ b/src/xine-engine/xine.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine.c,v 1.111 2002/03/18 19:34:17 guenter Exp $
+ * $Id: xine.c,v 1.112 2002/03/23 18:56:56 guenter Exp $
*
* top-level xine functions
*
@@ -664,11 +664,11 @@ int xine_check_version(int major, int minor, int sub) {
*/
void xine_set_av_offset (xine_t *this, int offset_pts) {
- this->metronom->set_av_offset (this->metronom, offset_pts);
+ this->metronom->set_option (this->metronom, METRONOM_AV_OFFSET, offset_pts);
}
int xine_get_av_offset (xine_t *this) {
- return this->metronom->get_av_offset (this->metronom);
+ return this->metronom->get_option (this->metronom, METRONOM_AV_OFFSET);
}
/*