summaryrefslogtreecommitdiff
path: root/xine/xvdr_metronom.h
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2009-10-21 00:02:02 +0000
committercvs2svn <admin@example.com>2009-10-21 00:02:02 +0000
commit97a97ca3358eb48de3eb7a222e487e800566569f (patch)
tree97c920d0225a1c9773a3bce2207f261d7d230123 /xine/xvdr_metronom.h
parenta61961358c5a2ec92340b3f8e056bab55438f103 (diff)
downloadxineliboutput-CVS.tar.gz
xineliboutput-CVS.tar.bz2
This commit was manufactured by cvs2svn to create branch 'CVS'.CVS
Diffstat (limited to 'xine/xvdr_metronom.h')
-rw-r--r--xine/xvdr_metronom.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/xine/xvdr_metronom.h b/xine/xvdr_metronom.h
deleted file mode 100644
index 21188f28..00000000
--- a/xine/xvdr_metronom.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * xvdr_metronom.h:
- *
- * See the main source file 'xineliboutput.c' for copyright information and
- * how to reach the author.
- *
- * $Id: xvdr_metronom.h,v 1.1 2009-05-22 21:02:30 phintuka Exp $
- *
- */
-
-#ifndef XVDR_METRONOM_H
-#define XVDR_METRONOM_H
-
-typedef struct xvdr_metronom_s xvdr_metronom_t;
-
-struct xvdr_metronom_s {
- /* xine-lib metronom interface */
- metronom_t metronom;
-
- /* management interface */
- void (*set_cb) (xvdr_metronom_t *,
- void (*cb) (void *, uint, uint),
- void *);
- void (*reset_frames)(xvdr_metronom_t *);
- void (*dispose) (xvdr_metronom_t *);
-
- /* accumulated frame data */
- volatile uint video_frames;
- volatile uint audio_frames;
-
- /* private data */
-
-#ifdef XVDR_METRONOM_COMPILE
-
- /* original metronom */
- metronom_t *orig_metronom;
- xine_stream_t *stream;
-
- /* callback */
- void *handle;
- void (*frame_decoded)(void *handle, uint video_count, uint audio_count);
-
-#endif
-};
-
-xvdr_metronom_t *xvdr_metronom_init(xine_stream_t *);
-
-
-#endif /* XVDR_METRONOM_H */