diff options
Diffstat (limited to 'xine/xvdr_metronom.h')
-rw-r--r-- | xine/xvdr_metronom.h | 49 |
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 */ |