diff options
Diffstat (limited to 'xine/xvdr_metronom.h')
-rw-r--r-- | xine/xvdr_metronom.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xine/xvdr_metronom.h b/xine/xvdr_metronom.h index 21188f28..b7aea5ae 100644 --- a/xine/xvdr_metronom.h +++ b/xine/xvdr_metronom.h @@ -4,7 +4,7 @@ * 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 $ + * $Id: xvdr_metronom.h,v 1.2 2010-01-17 23:03:25 phintuka Exp $ * */ @@ -24,6 +24,8 @@ struct xvdr_metronom_s { void (*reset_frames)(xvdr_metronom_t *); void (*dispose) (xvdr_metronom_t *); + void (*set_trickspeed)(xvdr_metronom_t *, int); + /* accumulated frame data */ volatile uint video_frames; volatile uint audio_frames; @@ -40,6 +42,8 @@ struct xvdr_metronom_s { void *handle; void (*frame_decoded)(void *handle, uint video_count, uint audio_count); + /* current trick speed */ + int trickspeed; #endif }; |