summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThibaut Mattern <tmattern@users.sourceforge.net>2002-06-19 23:37:46 +0000
committerThibaut Mattern <tmattern@users.sourceforge.net>2002-06-19 23:37:46 +0000
commitb6b8ce531f2197b12225a4d939878d233a5a18ec (patch)
treee6eae15b673fc0429cb27d1ec9e38eef987305b1 /src
parent0ed783c403b86c8e201eb8b53d4ada68270a77b0 (diff)
downloadxine-lib-b6b8ce531f2197b12225a4d939878d233a5a18ec.tar.gz
xine-lib-b6b8ce531f2197b12225a4d939878d233a5a18ec.tar.bz2
Add a new discontinuity for seeking, and a flag to authorize a big ao_fill_gap.
CVS patchset: 2097 CVS date: 2002/06/19 23:37:46
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/metronom.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xine-engine/metronom.h b/src/xine-engine/metronom.h
index f7fa8281a..73f58ea3b 100644
--- a/src/xine-engine/metronom.h
+++ b/src/xine-engine/metronom.h
@@ -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: metronom.h,v 1.30 2002/04/24 20:26:07 jcdutton Exp $
+ * $Id: metronom.h,v 1.31 2002/06/19 23:37:46 tmattern Exp $
*
* metronom: general pts => virtual calculation/assoc
*
@@ -59,6 +59,7 @@ typedef struct scr_plugin_s scr_plugin_t;
#define DISC_STREAMSTART 0
#define DISC_RELATIVE 1
#define DISC_ABSOLUTE 2
+#define DISC_STREAMSEEK 3
struct metronom_s {
@@ -237,6 +238,7 @@ struct metronom_s {
pthread_cond_t audio_discontinuity_reached;
pthread_cond_t cancel;
+ int allow_full_ao_fill_gap;
};
metronom_t *metronom_init (int have_audio, void *xine);