1 /*****************************************************************************
2 * input_internal.h: Internal input structures
3 *****************************************************************************
4 * Copyright (C) 1998-2006 the VideoLAN team
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__)
25 # error This header file can only be included from LibVLC.
28 #ifndef _INPUT_INTERNAL_H
29 #define _INPUT_INTERNAL_H 1
31 #include <vlc_access.h>
32 #include <vlc_demux.h>
33 #include <vlc_input.h>
35 #include "input_interface.h"
37 /*****************************************************************************
38 * Private input fields
39 *****************************************************************************/
41 #define INPUT_CONTROL_FIFO_SIZE 100
43 /* input_source_t: gathers all information per input source */
46 /* Access/Stream/Demux plugins */
51 /* Title infos for that input */
52 bool b_title_demux; /* Titles/Seekpoints provided by demux */
54 input_title_t **title;
57 int i_seekpoint_offset;
61 int i_seekpoint_start;
66 bool b_can_pace_control;
67 bool b_can_rate_control;
68 bool b_can_stream_record;
74 bool b_eof; /* eof of demuxer */
84 /** Private input fields */
85 struct input_thread_private_t
87 /* Global properties */
91 bool b_can_rate_control;
92 bool b_can_pace_control;
98 /* Playtime configuration and state */
99 int64_t i_start; /* :start-time,0 by default */
100 int64_t i_stop; /* :stop-time, 0 if none */
101 int64_t i_run; /* :run-time, 0 if none */
102 int64_t i_time; /* Current time */
103 bool b_fast_seek;/* :input-fast-seek */
106 bool b_out_pace_control; /* XXX Move it ot es_sout ? */
107 sout_instance_t *p_sout; /* Idem ? */
109 es_out_t *p_es_out_display;
111 /* Title infos FIXME multi-input (not easy) ? */
113 input_title_t **title;
116 int i_seekpoint_offset;
118 /* User bookmarks FIXME won't be easy with multiples input */
119 seekpoint_t bookmark;
121 seekpoint_t **pp_bookmark;
123 /* Input attachment */
125 input_attachment_t **attachment;
127 /* Main input properties */
130 input_item_t *p_item;
133 input_source_t input;
134 /* Slave sources (subs, and others) */
136 input_source_t **slave;
139 input_resource_t *p_resource;
143 counter_t *p_read_packets;
144 counter_t *p_read_bytes;
145 counter_t *p_input_bitrate;
146 counter_t *p_demux_read;
147 counter_t *p_demux_bitrate;
148 counter_t *p_demux_corrupted;
149 counter_t *p_demux_discontinuity;
150 counter_t *p_decoded_audio;
151 counter_t *p_decoded_video;
152 counter_t *p_decoded_sub;
153 counter_t *p_sout_sent_packets;
154 counter_t *p_sout_sent_bytes;
155 counter_t *p_sout_send_bitrate;
156 counter_t *p_played_abuffers;
157 counter_t *p_lost_abuffers;
158 counter_t *p_displayed_pictures;
159 counter_t *p_lost_pictures;
160 vlc_mutex_t counters_lock;
163 /* Buffer of pending actions */
164 vlc_mutex_t lock_control;
165 vlc_cond_t wait_control;
167 input_control_t control[INPUT_CONTROL_FIFO_SIZE];
172 /***************************************************************************
173 * Internal control helpers
174 ***************************************************************************/
177 INPUT_CONTROL_SET_DIE,
179 INPUT_CONTROL_SET_STATE,
181 INPUT_CONTROL_SET_RATE,
182 INPUT_CONTROL_SET_RATE_SLOWER,
183 INPUT_CONTROL_SET_RATE_FASTER,
185 INPUT_CONTROL_SET_POSITION,
187 INPUT_CONTROL_SET_TIME,
189 INPUT_CONTROL_SET_PROGRAM,
191 INPUT_CONTROL_SET_TITLE,
192 INPUT_CONTROL_SET_TITLE_NEXT,
193 INPUT_CONTROL_SET_TITLE_PREV,
195 INPUT_CONTROL_SET_SEEKPOINT,
196 INPUT_CONTROL_SET_SEEKPOINT_NEXT,
197 INPUT_CONTROL_SET_SEEKPOINT_PREV,
199 INPUT_CONTROL_SET_BOOKMARK,
201 INPUT_CONTROL_SET_ES,
202 INPUT_CONTROL_RESTART_ES,
204 INPUT_CONTROL_SET_AUDIO_DELAY,
205 INPUT_CONTROL_SET_SPU_DELAY,
207 INPUT_CONTROL_ADD_SLAVE,
209 INPUT_CONTROL_ADD_SUBTITLE,
211 INPUT_CONTROL_SET_RECORD_STATE,
213 INPUT_CONTROL_SET_FRAME_NEXT,
216 /* Internal helpers */
218 /* XXX for string value you have to allocate it before calling
221 void input_ControlPush( input_thread_t *, int i_type, vlc_value_t * );
223 /**********************************************************************
225 **********************************************************************/
226 /* input_ExtractAttachmentAndCacheArt:
227 * Becarefull; p_item lock HAS to be taken */
228 void input_ExtractAttachmentAndCacheArt( input_thread_t *p_input );
230 /***************************************************************************
231 * Internal prototypes
232 ***************************************************************************/
235 void input_ControlVarInit ( input_thread_t * );
236 void input_ControlVarStop( input_thread_t * );
237 void input_ControlVarNavigation( input_thread_t * );
238 void input_ControlVarTitle( input_thread_t *, int i_title );
240 void input_ConfigVarInit ( input_thread_t * );
243 char **subtitles_Detect( input_thread_t *, char* path, const char *fname );
244 int subtitles_Filter( const char *);