summaryrefslogtreecommitdiff
path: root/xine/adjustable_scr.h
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2010-04-04 19:20:29 +0000
committercvs2svn <admin@example.com>2010-04-04 19:20:29 +0000
commitcde3ee7dade952baf6274f38ca81b316fbcf0c6a (patch)
treefd73f71d41a6d9b9a66c37eb3e6e172a6155aed3 /xine/adjustable_scr.h
parent07de8081b90d309a2b8aaa6050b8e71fa017ae2f (diff)
downloadxineliboutput-libbluray-r103.tar.gz
xineliboutput-libbluray-r103.tar.bz2
This commit was manufactured by cvs2svn to create tag 'libbluray-r103'.libbluray-r103
Diffstat (limited to 'xine/adjustable_scr.h')
-rw-r--r--xine/adjustable_scr.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/xine/adjustable_scr.h b/xine/adjustable_scr.h
deleted file mode 100644
index 61707684..00000000
--- a/xine/adjustable_scr.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * adjustable_scr.h:
- *
- * See the main source file 'xineliboutput.c' for copyright information and
- * how to reach the author.
- *
- * $Id: adjustable_scr.h,v 1.1 2008-12-03 22:50:04 phintuka Exp $
- *
- */
-
-#ifndef XINELIBOUTPUT_ADJUSTABLE_SCR_H_
-#define XINELIBOUTPUT_ADJUSTABLE_SCR_H_
-
-/******************************* SCR *************************************
- *
- * unix System Clock Reference + fine tuning
- *
- * fine tuning is used to change playback speed in live mode
- * to keep in sync with mpeg source
- *************************************************************************/
-
-typedef struct adjustable_scr_s adjustable_scr_t;
-
-struct adjustable_scr_s {
- scr_plugin_t scr;
-
- void (*set_speed_tuning)(adjustable_scr_t *this, double factor);
- void (*set_speed_base) (adjustable_scr_t *this, int hz);
- void (*jump) (adjustable_scr_t *this, int pts);
-
- void (*dispose) (adjustable_scr_t *this);
-};
-
-adjustable_scr_t *adjustable_scr_start (xine_t *xine);
-
-
-#endif /* XINELIBOUTPUT_ADJUSTABLE_SCR_H_ */