chroma: chain: handle resize converter fmt changes
[vlc.git] / include / vlc_input.h
blobf1298bf143c856e5b64d4e38017b587a53b516a9
1 /*****************************************************************************
2 * vlc_input.h: Core input structures
3 *****************************************************************************
4 * Copyright (C) 1999-2015 VLC authors and VideoLAN
5 * $Id$
7 * Authors: Christophe Massiot <massiot@via.ecp.fr>
8 * Laurent Aimar <fenrir@via.ecp.fr>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #ifndef VLC_INPUT_H
26 #define VLC_INPUT_H 1
28 /**
29 * \defgroup input Input
30 * \ingroup vlc
31 * Input thread
32 * @{
33 * \file
34 * Input thread interface
37 #include <vlc_es.h>
38 #include <vlc_meta.h>
39 #include <vlc_epg.h>
40 #include <vlc_events.h>
41 #include <vlc_input_item.h>
42 #include <vlc_vout.h>
43 #include <vlc_vout_osd.h>
45 #include <string.h>
47 /*****************************************************************************
48 * Seek point: (generalisation of chapters)
49 *****************************************************************************/
50 struct seekpoint_t
52 int64_t i_time_offset;
53 char *psz_name;
56 static inline seekpoint_t *vlc_seekpoint_New( void )
58 seekpoint_t *point = (seekpoint_t*)malloc( sizeof( seekpoint_t ) );
59 if( !point )
60 return NULL;
61 point->i_time_offset = -1;
62 point->psz_name = NULL;
63 return point;
66 static inline void vlc_seekpoint_Delete( seekpoint_t *point )
68 if( !point ) return;
69 free( point->psz_name );
70 free( point );
73 static inline seekpoint_t *vlc_seekpoint_Duplicate( const seekpoint_t *src )
75 seekpoint_t *point = vlc_seekpoint_New();
76 if( likely(point) )
78 if( src->psz_name ) point->psz_name = strdup( src->psz_name );
79 point->i_time_offset = src->i_time_offset;
81 return point;
84 /*****************************************************************************
85 * Title:
86 *****************************************************************************/
88 /* input_title_t.i_flags field */
89 #define INPUT_TITLE_MENU 0x01 /* Menu title */
90 #define INPUT_TITLE_INTERACTIVE 0x02 /* Interactive title. Playback position has no meaning. */
92 typedef struct input_title_t
94 char *psz_name;
96 int64_t i_length; /* Length(microsecond) if known, else 0 */
98 unsigned i_flags; /* Is it a menu or a normal entry */
100 /* Title seekpoint */
101 int i_seekpoint;
102 seekpoint_t **seekpoint;
103 } input_title_t;
105 static inline input_title_t *vlc_input_title_New(void)
107 input_title_t *t = (input_title_t*)malloc( sizeof( input_title_t ) );
108 if( !t )
109 return NULL;
111 t->psz_name = NULL;
112 t->i_flags = 0;
113 t->i_length = 0;
114 t->i_seekpoint = 0;
115 t->seekpoint = NULL;
117 return t;
120 static inline void vlc_input_title_Delete( input_title_t *t )
122 int i;
123 if( t == NULL )
124 return;
126 free( t->psz_name );
127 for( i = 0; i < t->i_seekpoint; i++ )
128 vlc_seekpoint_Delete( t->seekpoint[i] );
129 free( t->seekpoint );
130 free( t );
133 static inline input_title_t *vlc_input_title_Duplicate( const input_title_t *t )
135 input_title_t *dup = vlc_input_title_New( );
136 if( dup == NULL) return NULL;
138 if( t->psz_name ) dup->psz_name = strdup( t->psz_name );
139 dup->i_flags = t->i_flags;
140 dup->i_length = t->i_length;
141 if( t->i_seekpoint > 0 )
143 dup->seekpoint = (seekpoint_t**)vlc_alloc( t->i_seekpoint, sizeof(seekpoint_t*) );
144 if( likely(dup->seekpoint) )
146 for( int i = 0; i < t->i_seekpoint; i++ )
147 dup->seekpoint[i] = vlc_seekpoint_Duplicate( t->seekpoint[i] );
148 dup->i_seekpoint = t->i_seekpoint;
152 return dup;
155 /*****************************************************************************
156 * Attachments
157 *****************************************************************************/
158 struct input_attachment_t
160 char *psz_name;
161 char *psz_mime;
162 char *psz_description;
164 size_t i_data;
165 void *p_data;
168 static inline void vlc_input_attachment_Delete( input_attachment_t *a )
170 if( !a )
171 return;
173 free( a->p_data );
174 free( a->psz_description );
175 free( a->psz_mime );
176 free( a->psz_name );
177 free( a );
180 static inline input_attachment_t *vlc_input_attachment_New( const char *psz_name,
181 const char *psz_mime,
182 const char *psz_description,
183 const void *p_data,
184 size_t i_data )
186 input_attachment_t *a = (input_attachment_t *)malloc( sizeof (*a) );
187 if( unlikely(a == NULL) )
188 return NULL;
190 a->psz_name = strdup( psz_name ? psz_name : "" );
191 a->psz_mime = strdup( psz_mime ? psz_mime : "" );
192 a->psz_description = strdup( psz_description ? psz_description : "" );
193 a->i_data = i_data;
194 a->p_data = malloc( i_data );
195 if( i_data > 0 && likely(a->p_data != NULL) )
196 memcpy( a->p_data, p_data, i_data );
198 if( unlikely(a->psz_name == NULL || a->psz_mime == NULL
199 || a->psz_description == NULL || (i_data > 0 && a->p_data == NULL)) )
201 vlc_input_attachment_Delete( a );
202 a = NULL;
204 return a;
207 static inline input_attachment_t *vlc_input_attachment_Duplicate( const input_attachment_t *a )
209 return vlc_input_attachment_New( a->psz_name, a->psz_mime, a->psz_description,
210 a->p_data, a->i_data );
213 /*****************************************************************************
214 * input defines/constants.
215 *****************************************************************************/
218 * This defines an opaque input resource handler.
220 typedef struct input_resource_t input_resource_t;
223 * Main structure representing an input thread. This structure is mostly
224 * private. The only public fields are read-only and constant.
226 struct input_thread_t
228 struct vlc_common_members obj;
232 * Record prefix string.
233 * TODO make it configurable.
235 #define INPUT_RECORD_PREFIX "vlc-record-%Y-%m-%d-%Hh%Mm%Ss-$ N-$ p"
237 /*****************************************************************************
238 * Input events and variables
239 *****************************************************************************/
242 * \defgroup inputvariable Input variables
244 * The input provides multiples variable you can write to and/or read from.
246 * TODO complete the documentation.
247 * The read only variables are:
248 * - "length"
249 * - "can-seek" (if you can seek, it doesn't say if 'bar display' has be shown
250 * or not, for that check position != 0.0)
251 * - "can-pause"
252 * - "can-rate"
253 * - "can-rewind"
254 * - "can-record" (if a stream can be recorded while playing)
255 * - "teletext-es" (list of id from the spu tracks (spu-es) that are teletext, the
256 * variable value being the one currently selected, -1 if no teletext)
257 * - "signal-quality"
258 * - "signal-strength"
259 * - "program-scrambled" (if the current program is scrambled)
260 * - "cache" (level of data cached [0 .. 1])
262 * The read-write variables are:
263 * - state (\see input_state_e)
264 * - rate
265 * - position
266 * - time, time-offset
267 * - title, next-title, prev-title
268 * - chapter, next-chapter, next-chapter-prev
269 * - program, audio-es, video-es, spu-es
270 * - audio-delay, spu-delay
271 * - bookmark (bookmark list)
272 * - record
273 * - frame-next
274 * - navigation (list of "title %2i")
275 * - "title %2i"
277 * The variable used for event is
278 * - intf-event (\see input_event_type_e)
282 * Input state
284 * This enum is used by the variable "state"
286 typedef enum input_state_e
288 INIT_S = 0,
289 OPENING_S,
290 PLAYING_S,
291 PAUSE_S,
292 END_S,
293 ERROR_S,
294 } input_state_e;
297 * Input rate.
299 * It is an float used by the variable "rate" in the
300 * range [INPUT_RATE_DEFAULT/INPUT_RATE_MAX, INPUT_RATE_DEFAULT/INPUT_RATE_MIN]
301 * the default value being 1. It represents the ratio of playback speed to
302 * nominal speed (bigger is faster).
304 * Internally, the rate is stored as a value in the range
305 * [INPUT_RATE_MIN, INPUT_RATE_MAX].
306 * internal rate = INPUT_RATE_DEFAULT / rate variable
310 * Default rate value
312 #define INPUT_RATE_DEFAULT 1000
314 * Minimal rate value
316 #define INPUT_RATE_MIN 32 /* Up to 32/1 */
318 * Maximal rate value
320 #define INPUT_RATE_MAX 32000 /* Up to 1/32 */
323 * Input events
325 * You can catch input event by adding a callback on the variable "intf-event".
326 * This variable is an integer that will hold a input_event_type_e value.
328 typedef enum input_event_type_e
330 /* "state" has changed */
331 INPUT_EVENT_STATE,
332 /* b_dead is true */
333 INPUT_EVENT_DEAD,
335 /* "rate" has changed */
336 INPUT_EVENT_RATE,
338 /* At least one of "position" or "time" */
339 INPUT_EVENT_POSITION,
341 /* "length" has changed */
342 INPUT_EVENT_LENGTH,
344 /* A title has been added or removed or selected.
345 * It implies that the chapter has changed (no chapter event is sent) */
346 INPUT_EVENT_TITLE,
347 /* A chapter has been added or removed or selected. */
348 INPUT_EVENT_CHAPTER,
350 /* A program ("program") has been added or removed or selected,
351 * or "program-scrambled" has changed.*/
352 INPUT_EVENT_PROGRAM,
353 /* A ES has been added or removed or selected */
354 INPUT_EVENT_ES,
355 /* "teletext-es" has changed */
356 INPUT_EVENT_TELETEXT,
358 /* "record" has changed */
359 INPUT_EVENT_RECORD,
361 /* input_item_t media has changed */
362 INPUT_EVENT_ITEM_META,
363 /* input_item_t info has changed */
364 INPUT_EVENT_ITEM_INFO,
365 /* input_item_t epg has changed */
366 INPUT_EVENT_ITEM_EPG,
368 /* Input statistics have been updated */
369 INPUT_EVENT_STATISTICS,
370 /* At least one of "signal-quality" or "signal-strength" has changed */
371 INPUT_EVENT_SIGNAL,
373 /* "audio-delay" has changed */
374 INPUT_EVENT_AUDIO_DELAY,
375 /* "spu-delay" has changed */
376 INPUT_EVENT_SUBTITLE_DELAY,
378 /* "bookmark" has changed */
379 INPUT_EVENT_BOOKMARK,
381 /* cache" has changed */
382 INPUT_EVENT_CACHE,
384 /* A audio_output_t object has been created/deleted by *the input* */
385 INPUT_EVENT_AOUT,
386 /* A vout_thread_t object has been created/deleted by *the input* */
387 INPUT_EVENT_VOUT,
389 } input_event_type_e;
392 * Input queries
394 enum input_query_e
396 /* input variable "position" */
397 INPUT_GET_POSITION, /* arg1= double * res= */
398 INPUT_SET_POSITION, /* arg1= double res=can fail */
400 /* input variable "length" */
401 INPUT_GET_LENGTH, /* arg1= int64_t * res=can fail */
403 /* input variable "time" */
404 INPUT_GET_TIME, /* arg1= int64_t * res= */
405 INPUT_SET_TIME, /* arg1= int64_t res=can fail */
407 /* input variable "rate" (nominal is INPUT_RATE_DEFAULT) */
408 INPUT_GET_RATE, /* arg1= int * res= */
409 INPUT_SET_RATE, /* arg1= int res=can fail */
411 /* input variable "state" */
412 INPUT_GET_STATE, /* arg1= int * res= */
413 INPUT_SET_STATE, /* arg1= int res=can fail */
415 /* input variable "audio-delay" and "sub-delay" */
416 INPUT_GET_AUDIO_DELAY, /* arg1 = int* res=can fail */
417 INPUT_SET_AUDIO_DELAY, /* arg1 = int res=can fail */
418 INPUT_GET_SPU_DELAY, /* arg1 = int* res=can fail */
419 INPUT_SET_SPU_DELAY, /* arg1 = int res=can fail */
421 /* Menu (VCD/DVD/BD) Navigation */
422 /** Activate the navigation item selected. res=can fail */
423 INPUT_NAV_ACTIVATE,
424 /** Use the up arrow to select a navigation item above. res=can fail */
425 INPUT_NAV_UP,
426 /** Use the down arrow to select a navigation item under. res=can fail */
427 INPUT_NAV_DOWN,
428 /** Use the left arrow to select a navigation item on the left. res=can fail */
429 INPUT_NAV_LEFT,
430 /** Use the right arrow to select a navigation item on the right. res=can fail */
431 INPUT_NAV_RIGHT,
432 /** Activate the popup Menu (for BD). res=can fail */
433 INPUT_NAV_POPUP,
434 /** Activate disc Root Menu. res=can fail */
435 INPUT_NAV_MENU,
437 /* Meta datas */
438 INPUT_ADD_INFO, /* arg1= char* arg2= char* arg3=... res=can fail */
439 INPUT_REPLACE_INFOS,/* arg1= info_category_t * res=cannot fail */
440 INPUT_MERGE_INFOS,/* arg1= info_category_t * res=cannot fail */
441 INPUT_DEL_INFO, /* arg1= char* arg2= char* res=can fail */
443 /* bookmarks */
444 INPUT_GET_BOOKMARK, /* arg1= seekpoint_t * res=can fail */
445 INPUT_GET_BOOKMARKS, /* arg1= seekpoint_t *** arg2= int * res=can fail */
446 INPUT_CLEAR_BOOKMARKS, /* res=can fail */
447 INPUT_ADD_BOOKMARK, /* arg1= seekpoint_t * res=can fail */
448 INPUT_CHANGE_BOOKMARK, /* arg1= seekpoint_t * arg2= int * res=can fail */
449 INPUT_DEL_BOOKMARK, /* arg1= seekpoint_t * res=can fail */
450 INPUT_SET_BOOKMARK, /* arg1= int res=can fail */
452 /* titles */
453 INPUT_GET_TITLE_INFO, /* arg1=input_title_t** arg2= int * res=can fail */
454 INPUT_GET_FULL_TITLE_INFO, /* arg1=input_title_t*** arg2= int * res=can fail */
456 /* seekpoints */
457 INPUT_GET_SEEKPOINTS, /* arg1=seekpoint_t*** arg2= int * res=can fail */
459 /* Attachments */
460 INPUT_GET_ATTACHMENTS, /* arg1=input_attachment_t***, arg2=int* res=can fail */
461 INPUT_GET_ATTACHMENT, /* arg1=input_attachment_t**, arg2=char* res=can fail */
463 /* On the fly input slave */
464 INPUT_ADD_SLAVE, /* arg1= enum slave_type, arg2= const char *,
465 * arg3= bool forced, arg4= bool notify,
466 * arg5= bool check_extension */
468 /* On the fly record while playing */
469 INPUT_SET_RECORD_STATE, /* arg1=bool res=can fail */
470 INPUT_GET_RECORD_STATE, /* arg1=bool* res=can fail */
472 /* ES */
473 INPUT_RESTART_ES, /* arg1=int (-AUDIO/VIDEO/SPU_ES for the whole category) */
475 /* Viewpoint */
476 INPUT_UPDATE_VIEWPOINT, /* arg1=(const vlc_viewpoint_t*), arg2=bool b_absolute */
477 INPUT_SET_INITIAL_VIEWPOINT, /* arg1=(const vlc_viewpoint_t*) */
479 /* Input ressources
480 * XXX You must call vlc_object_release as soon as possible */
481 INPUT_GET_AOUT, /* arg1=audio_output_t ** res=can fail */
482 INPUT_GET_VOUTS, /* arg1=vout_thread_t ***, size_t * res=can fail */
483 INPUT_GET_ES_OBJECTS, /* arg1=int id, vlc_object_t **dec, vout_thread_t **, audio_output_t ** */
485 /* Renderers */
486 INPUT_SET_RENDERER, /* arg1=vlc_renderer_item_t* */
488 /* External clock managments */
489 INPUT_GET_PCR_SYSTEM, /* arg1=mtime_t *, arg2=mtime_t * res=can fail */
490 INPUT_MODIFY_PCR_SYSTEM,/* arg1=int absolute, arg2=mtime_t res=can fail */
493 /** @}*/
495 /*****************************************************************************
496 * Prototypes
497 *****************************************************************************/
499 VLC_API input_thread_t * input_Create( vlc_object_t *p_parent, input_item_t *,
500 const char *psz_log, input_resource_t *,
501 vlc_renderer_item_t* p_renderer ) VLC_USED;
502 #define input_Create(a,b,c,d,e) input_Create(VLC_OBJECT(a),b,c,d,e)
504 VLC_API int input_Start( input_thread_t * );
506 VLC_API void input_Stop( input_thread_t * );
508 VLC_API int input_Read( vlc_object_t *, input_item_t * );
509 #define input_Read(a,b) input_Read(VLC_OBJECT(a),b)
511 VLC_API int input_vaControl( input_thread_t *, int i_query, va_list );
513 VLC_API int input_Control( input_thread_t *, int i_query, ... );
515 VLC_API void input_Close( input_thread_t * );
518 * Create a new input_thread_t and start it.
520 * Provided for convenience.
522 * \see input_Create
524 static inline
525 input_thread_t *input_CreateAndStart( vlc_object_t *parent,
526 input_item_t *item, const char *log )
528 input_thread_t *input = input_Create( parent, item, log, NULL, NULL );
529 if( input != NULL && input_Start( input ) )
531 vlc_object_release( input );
532 input = NULL;
534 return input;
536 #define input_CreateAndStart(a,b,c) input_CreateAndStart(VLC_OBJECT(a),b,c)
539 * Get the input item for an input thread
541 * You have to keep a reference to the input or to the input_item_t until
542 * you do not need it anymore.
544 VLC_API input_item_t* input_GetItem( input_thread_t * ) VLC_USED;
547 * It will return the current state of the input.
548 * Provided for convenience.
550 static inline input_state_e input_GetState( input_thread_t * p_input )
552 input_state_e state = INIT_S;
553 input_Control( p_input, INPUT_GET_STATE, &state );
554 return state;
558 * Return one of the video output (if any). If possible, you should use
559 * INPUT_GET_VOUTS directly and process _all_ video outputs instead.
560 * @param p_input an input thread from which to get a video output
561 * @return NULL on error, or a video output thread pointer (which needs to be
562 * released with vlc_object_release()).
564 static inline vout_thread_t *input_GetVout( input_thread_t *p_input )
566 vout_thread_t **pp_vout, *p_vout;
567 size_t i_vout;
569 if( input_Control( p_input, INPUT_GET_VOUTS, &pp_vout, &i_vout ) )
570 return NULL;
572 for( size_t i = 1; i < i_vout; i++ )
573 vlc_object_release( (vlc_object_t *)(pp_vout[i]) );
575 p_vout = (i_vout >= 1) ? pp_vout[0] : NULL;
576 free( pp_vout );
577 return p_vout;
580 static inline int input_AddSlave( input_thread_t *p_input, enum slave_type type,
581 const char *psz_uri, bool b_forced,
582 bool b_notify, bool b_check_ext )
584 return input_Control( p_input, INPUT_ADD_SLAVE, type, psz_uri, b_forced,
585 b_notify, b_check_ext );
589 * Update the viewpoint of the input thread. The viewpoint will be applied to
590 * all vouts and aouts.
592 * @param p_input an input thread
593 * @param p_viewpoint the viewpoint value
594 * @param b_absolute if true replace the old viewpoint with the new one. If
595 * false, increase/decrease it.
596 * @return VLC_SUCCESS or a VLC error code
598 static inline int input_UpdateViewpoint( input_thread_t *p_input,
599 const vlc_viewpoint_t *p_viewpoint,
600 bool b_absolute )
602 return input_Control( p_input, INPUT_UPDATE_VIEWPOINT, p_viewpoint,
603 b_absolute );
607 * Return the audio output (if any) associated with an input.
608 * @param p_input an input thread
609 * @return NULL on error, or the audio output (which needs to be
610 * released with vlc_object_release()).
612 static inline audio_output_t *input_GetAout( input_thread_t *p_input )
614 audio_output_t *p_aout;
615 return input_Control( p_input, INPUT_GET_AOUT, &p_aout ) ? NULL : p_aout;
619 * Returns the objects associated to an ES.
621 * You must release all non NULL object using vlc_object_release.
622 * You may set pointer of pointer to NULL to avoid retreiving it.
624 static inline int input_GetEsObjects( input_thread_t *p_input, int i_id,
625 vlc_object_t **pp_decoder,
626 vout_thread_t **pp_vout, audio_output_t **pp_aout )
628 return input_Control( p_input, INPUT_GET_ES_OBJECTS, i_id,
629 pp_decoder, pp_vout, pp_aout );
633 * \see input_clock_GetSystemOrigin
635 static inline int input_GetPcrSystem( input_thread_t *p_input, mtime_t *pi_system, mtime_t *pi_delay )
637 return input_Control( p_input, INPUT_GET_PCR_SYSTEM, pi_system, pi_delay );
640 * \see input_clock_ChangeSystemOrigin
642 static inline int input_ModifyPcrSystem( input_thread_t *p_input, bool b_absolute, mtime_t i_system )
644 return input_Control( p_input, INPUT_MODIFY_PCR_SYSTEM, b_absolute, i_system );
647 /* */
648 VLC_API decoder_t * input_DecoderCreate( vlc_object_t *, const es_format_t *, input_resource_t * ) VLC_USED;
649 VLC_API void input_DecoderDelete( decoder_t * );
650 VLC_API void input_DecoderDecode( decoder_t *, block_t *, bool b_do_pace );
651 VLC_API void input_DecoderDrain( decoder_t * );
652 VLC_API void input_DecoderFlush( decoder_t * );
655 * This function creates a sane filename path.
657 VLC_API char * input_CreateFilename( input_thread_t *, const char *psz_path, const char *psz_prefix, const char *psz_extension ) VLC_USED;
660 * It creates an empty input resource handler.
662 * The given object MUST stay alive as long as the input_resource_t is
663 * not deleted.
665 VLC_API input_resource_t * input_resource_New( vlc_object_t * ) VLC_USED;
668 * It releases an input resource.
670 VLC_API void input_resource_Release( input_resource_t * );
673 * Forcefully destroys the video output (e.g. when the playlist is stopped).
675 VLC_API void input_resource_TerminateVout( input_resource_t * );
678 * This function releases all resources (object).
680 VLC_API void input_resource_Terminate( input_resource_t * );
683 * \return the current audio output if any.
684 * Use vlc_object_release() to drop the reference.
686 VLC_API audio_output_t *input_resource_HoldAout( input_resource_t * );
689 * This function creates or recycles an audio output.
691 VLC_API audio_output_t *input_resource_GetAout( input_resource_t * );
694 * This function retains or destroys an audio output.
696 VLC_API void input_resource_PutAout( input_resource_t *, audio_output_t * );
699 * Prevents the existing audio output (if any) from being recycled.
701 VLC_API void input_resource_ResetAout( input_resource_t * );
703 /** @} */
704 #endif