diff options
author | phintuka <phintuka> | 2007-12-22 21:57:02 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-12-22 21:57:02 +0000 |
commit | b6636d349e9ed32296bcaebdaee5a740e30bdc60 (patch) | |
tree | c0332eca71fcbe7d01fef5f107102e27a23e5f7d | |
parent | 33b29faf481f815184b1c0bd260a8aa607f6739a (diff) | |
download | xineliboutput-b6636d349e9ed32296bcaebdaee5a740e30bdc60.tar.gz xineliboutput-b6636d349e9ed32296bcaebdaee5a740e30bdc60.tar.bz2 |
Fix fifo_buffer_new define
-rw-r--r-- | xine_input_vdr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xine_input_vdr.c b/xine_input_vdr.c index 72db0474..1278ee42 100644 --- a/xine_input_vdr.c +++ b/xine_input_vdr.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: xine_input_vdr.c,v 1.103 2007-12-19 23:32:34 phintuka Exp $ + * $Id: xine_input_vdr.c,v 1.104 2007-12-22 21:57:02 phintuka Exp $ * */ @@ -1383,7 +1383,7 @@ static void signal_buffer_not_empty(vdr_input_plugin_t *this) } #if XINE_VERSION_CODE < 10190 -# define fifo_buffer_new (stream, n, s) _x_fifo_buffer_new(n, s) +# define fifo_buffer_new(stream, n, s) _x_fifo_buffer_new(n, s) #else static fifo_buffer_t *fifo_buffer_new (xine_stream_t *stream, int num_buffers, uint32_t buf_size) { |