From b2dfbe82d7c68198548995aa309a8883ef3da521 Mon Sep 17 00:00:00 2001 From: Guenter Bartsch Date: Sat, 23 Mar 2002 18:56:55 +0000 Subject: 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 --- src/xine-engine/xine.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/xine-engine/xine.c') 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); } /* -- cgit v1.2.3