From 7976ebd1f3067909647ea7d5f07015d513fe26b3 Mon Sep 17 00:00:00 2001 From: Laurent Aimar Date: Thu, 20 Nov 2008 19:45:11 +0100 Subject: [PATCH] Moved INPUT_CONTROL_FIFO_SIZE to private header. --- include/vlc_input.h | 3 --- src/input/input_internal.h | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/vlc_input.h b/include/vlc_input.h index 484dac68d1..2d24d8a200 100644 --- a/include/vlc_input.h +++ b/include/vlc_input.h @@ -418,9 +418,6 @@ typedef enum input_state_e #define INPUT_UPDATE_META 0x0040 #define INPUT_UPDATE_SIGNAL 0x0080 -/* Input control XXX: internal */ -#define INPUT_CONTROL_FIFO_SIZE 100 - /** Get the input item for an input thread */ VLC_EXPORT(input_item_t*, input_GetItem, (input_thread_t*)); diff --git a/src/input/input_internal.h b/src/input/input_internal.h index b529c0afbd..1c52d715b0 100644 --- a/src/input/input_internal.h +++ b/src/input/input_internal.h @@ -36,6 +36,9 @@ /***************************************************************************** * Private input fields *****************************************************************************/ + +#define INPUT_CONTROL_FIFO_SIZE 100 + /* input_source_t: gathers all information per input source */ typedef struct { -- 2.39.5