1 /*****************************************************************************
2 * vlc_input.h: Core input structures
3 *****************************************************************************
4 * Copyright (C) 1999-2015 VLC authors and VideoLAN
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 *****************************************************************************/
29 * \defgroup input Input
34 * Input thread interface
40 #include <vlc_events.h>
41 #include <vlc_input_item.h>
43 #include <vlc_vout_osd.h>
47 /*****************************************************************************
48 * Seek point: (generalisation of chapters)
49 *****************************************************************************/
52 vlc_tick_t i_time_offset
;
56 static inline seekpoint_t
*vlc_seekpoint_New( void )
58 seekpoint_t
*point
= (seekpoint_t
*)malloc( sizeof( seekpoint_t
) );
61 point
->i_time_offset
= -1;
62 point
->psz_name
= NULL
;
66 static inline void vlc_seekpoint_Delete( seekpoint_t
*point
)
69 free( point
->psz_name
);
73 static inline seekpoint_t
*vlc_seekpoint_Duplicate( const seekpoint_t
*src
)
75 seekpoint_t
*point
= vlc_seekpoint_New();
78 if( src
->psz_name
) point
->psz_name
= strdup( src
->psz_name
);
79 point
->i_time_offset
= src
->i_time_offset
;
84 /*****************************************************************************
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
96 vlc_tick_t i_length
; /* Length(microsecond) if known, else 0 */
98 unsigned i_flags
; /* Is it a menu or a normal entry */
100 /* Title seekpoint */
102 seekpoint_t
**seekpoint
;
105 static inline input_title_t
*vlc_input_title_New(void)
107 input_title_t
*t
= (input_title_t
*)malloc( sizeof( input_title_t
) );
120 static inline void vlc_input_title_Delete( input_title_t
*t
)
127 for( i
= 0; i
< t
->i_seekpoint
; i
++ )
128 vlc_seekpoint_Delete( t
->seekpoint
[i
] );
129 free( t
->seekpoint
);
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
;
155 /*****************************************************************************
157 *****************************************************************************/
158 struct input_attachment_t
162 char *psz_description
;
168 static inline void vlc_input_attachment_Delete( input_attachment_t
*a
)
174 free( a
->psz_description
);
180 static inline input_attachment_t
*vlc_input_attachment_New( const char *psz_name
,
181 const char *psz_mime
,
182 const char *psz_description
,
186 input_attachment_t
*a
= (input_attachment_t
*)malloc( sizeof (*a
) );
187 if( unlikely(a
== 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
: "" );
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
);
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:
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)
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)
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)
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)
274 * - navigation (list of "title %2i")
277 * The variable used for event is
278 * - intf-event (\see input_event_type_e)
284 * This enum is used by the variable "state"
286 typedef enum input_state_e
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
312 #define INPUT_RATE_DEFAULT 1000
316 #define INPUT_RATE_MIN 32 /* Up to 32/1 */
320 #define INPUT_RATE_MAX 32000 /* Up to 1/32 */
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 */
335 /* "rate" has changed */
338 /* "capabilities" has changed */
339 INPUT_EVENT_CAPABILITIES
,
341 /* At least one of "position" or "time" */
342 INPUT_EVENT_POSITION
,
344 /* "length" has changed */
347 /* A title has been added or removed or selected.
348 * It implies that the chapter has changed (no chapter event is sent) */
350 /* A chapter has been added or removed or selected. */
353 /* A program ("program") has been added or removed or selected,
354 * or "program-scrambled" has changed.*/
356 /* A ES has been added or removed or selected */
359 /* "record" has changed */
362 /* input_item_t media has changed */
363 INPUT_EVENT_ITEM_META
,
364 /* input_item_t info has changed */
365 INPUT_EVENT_ITEM_INFO
,
366 /* input_item_t epg has changed */
367 INPUT_EVENT_ITEM_EPG
,
369 /* Input statistics have been updated */
370 INPUT_EVENT_STATISTICS
,
371 /* At least one of "signal-quality" or "signal-strength" has changed */
374 /* "audio-delay" has changed */
375 INPUT_EVENT_AUDIO_DELAY
,
376 /* "spu-delay" has changed */
377 INPUT_EVENT_SUBTITLE_DELAY
,
379 /* "bookmark" has changed */
380 INPUT_EVENT_BOOKMARK
,
382 /* cache" has changed */
385 /* A vout_thread_t object has been created/deleted by *the input* */
388 /* (pre-)parsing events */
389 INPUT_EVENT_SUBITEMS
,
391 /* vbi_page has changed */
392 INPUT_EVENT_VBI_PAGE
,
393 /* vbi_transparent has changed */
394 INPUT_EVENT_VBI_TRANSPARENCY
,
396 /* subs_fps has changed */
397 INPUT_EVENT_SUBS_FPS
,
398 } input_event_type_e
;
400 #define VLC_INPUT_CAPABILITIES_SEEKABLE (1<<0)
401 #define VLC_INPUT_CAPABILITIES_PAUSEABLE (1<<1)
402 #define VLC_INPUT_CAPABILITIES_CHANGE_RATE (1<<2)
403 #define VLC_INPUT_CAPABILITIES_REWINDABLE (1<<3)
404 #define VLC_INPUT_CAPABILITIES_RECORDABLE (1<<4)
406 struct vlc_input_event_position
412 struct vlc_input_event_title
415 VLC_INPUT_TITLE_NEW_LIST
,
416 VLC_INPUT_TITLE_SELECTED
,
422 const input_title_t
**array
;
429 struct vlc_input_event_chapter
435 struct vlc_input_event_program
{
437 VLC_INPUT_PROGRAM_ADDED
,
438 VLC_INPUT_PROGRAM_DELETED
,
439 VLC_INPUT_PROGRAM_UPDATED
,
440 VLC_INPUT_PROGRAM_SELECTED
,
441 VLC_INPUT_PROGRAM_SCRAMBLED
,
450 struct vlc_input_event_es
{
453 VLC_INPUT_ES_DELETED
,
454 VLC_INPUT_ES_UPDATED
,
455 VLC_INPUT_ES_SELECTED
,
456 VLC_INPUT_ES_UNSELECTED
,
459 * ES track id: only valid from the event callback, unless the id is held
460 * by the user with vlc_es_Hold(). */
463 * Title of ES track, can be updated after the VLC_INPUT_ES_UPDATED event.
467 * ES track information, can be updated after the VLC_INPUT_ES_UPDATED event.
469 const es_format_t
*fmt
;
472 struct vlc_input_event_signal
{
477 struct vlc_input_event_vout
480 VLC_INPUT_EVENT_VOUT_ADDED
,
481 VLC_INPUT_EVENT_VOUT_DELETED
,
486 struct vlc_input_event
488 input_event_type_e type
;
491 /* INPUT_EVENT_STATE */
493 /* INPUT_EVENT_RATE */
495 /* INPUT_EVENT_CAPABILITIES */
496 int capabilities
; /**< cf. VLC_INPUT_CAPABILITIES_* bitwise flags */
497 /* INPUT_EVENT_POSITION */
498 struct vlc_input_event_position position
;
499 /* INPUT_EVENT_LENGTH */
501 /* INPUT_EVENT_TITLE */
502 struct vlc_input_event_title title
;
503 /* INPUT_EVENT_CHAPTER */
504 struct vlc_input_event_chapter chapter
;
505 /* INPUT_EVENT_PROGRAM */
506 struct vlc_input_event_program program
;
508 struct vlc_input_event_es es
;
509 /* INPUT_EVENT_RECORD */
511 /* INPUT_EVENT_STATISTICS */
512 const struct input_stats_t
*stats
;
513 /* INPUT_EVENT_SIGNAL */
514 struct vlc_input_event_signal signal
;
515 /* INPUT_EVENT_AUDIO_DELAY */
516 vlc_tick_t audio_delay
;
517 /* INPUT_EVENT_SUBTITLE_DELAY */
518 vlc_tick_t subtitle_delay
;
519 /* INPUT_EVENT_CACHE */
521 /* INPUT_EVENT_VOUT */
522 struct vlc_input_event_vout vout
;
523 /* INPUT_EVENT_SUBITEMS */
524 input_item_node_t
*subitems
;
525 /* INPUT_EVENT_VBI_PAGE */
527 /* INPUT_EVENT_VBI_TRANSPARENCY */
528 bool vbi_transparent
;
529 /* INPUT_EVENT_SUBS_FPS */
534 typedef void (*input_thread_events_cb
)( input_thread_t
*input
,
535 const struct vlc_input_event
*event
,
543 /* Menu (VCD/DVD/BD) Navigation */
544 /** Activate the navigation item selected. res=can fail */
546 /** Use the up arrow to select a navigation item above. res=can fail */
548 /** Use the down arrow to select a navigation item under. res=can fail */
550 /** Use the left arrow to select a navigation item on the left. res=can fail */
552 /** Use the right arrow to select a navigation item on the right. res=can fail */
554 /** Activate the popup Menu (for BD). res=can fail */
556 /** Activate disc Root Menu. res=can fail */
560 INPUT_GET_BOOKMARK
, /* arg1= seekpoint_t * res=can fail */
561 INPUT_GET_BOOKMARKS
, /* arg1= seekpoint_t *** arg2= int * res=can fail */
562 INPUT_CLEAR_BOOKMARKS
, /* res=can fail */
563 INPUT_ADD_BOOKMARK
, /* arg1= seekpoint_t * res=can fail */
564 INPUT_CHANGE_BOOKMARK
, /* arg1= seekpoint_t * arg2= int * res=can fail */
565 INPUT_DEL_BOOKMARK
, /* arg1= seekpoint_t * res=can fail */
566 INPUT_SET_BOOKMARK
, /* arg1= int res=can fail */
569 INPUT_GET_FULL_TITLE_INFO
, /* arg1=input_title_t*** arg2= int * res=can fail */
571 /* On the fly input slave */
572 INPUT_ADD_SLAVE
, /* arg1= enum slave_type, arg2= const char *,
573 * arg3= bool forced, arg4= bool notify,
574 * arg5= bool check_extension */
577 INPUT_RESTART_ES_BY_ID
,/* arg1=int (-AUDIO/VIDEO/SPU_ES for the whole category) */
580 INPUT_UPDATE_VIEWPOINT
, /* arg1=(const vlc_viewpoint_t*), arg2=bool b_absolute */
581 INPUT_SET_INITIAL_VIEWPOINT
, /* arg1=(const vlc_viewpoint_t*) */
584 * XXX You must call vlc_object_release as soon as possible */
585 INPUT_GET_AOUT
, /* arg1=audio_output_t ** res=can fail */
586 INPUT_GET_VOUTS
, /* arg1=vout_thread_t ***, size_t * res=can fail */
587 INPUT_GET_ES_OBJECTS
, /* arg1=int id, vlc_object_t **dec, vout_thread_t **, audio_output_t ** */
590 INPUT_SET_RENDERER
, /* arg1=vlc_renderer_item_t* */
592 /* External clock managments */
593 INPUT_GET_PCR_SYSTEM
, /* arg1=vlc_tick_t *, arg2=vlc_tick_t * res=can fail */
594 INPUT_MODIFY_PCR_SYSTEM
,/* arg1=int absolute, arg2=vlc_tick_t res=can fail */
599 /*****************************************************************************
601 *****************************************************************************/
602 VLC_API input_thread_t
* input_Create( vlc_object_t
*p_parent
,
603 input_thread_events_cb event_cb
, void *events_data
,
604 input_item_t
*, const char *psz_log
, input_resource_t
*,
605 vlc_renderer_item_t
* p_renderer
) VLC_USED
;
606 #define input_Create(a,b,c,d,e,f,g) input_Create(VLC_OBJECT(a),b,c,d,e,f,g)
610 * Creates an item preparser.
612 * Creates an input thread to preparse an item. The input needs to be started
613 * with input_Start() afterwards.
615 * @param obj parent object
616 * @param item input item to preparse
617 * @return an input thread or NULL on error
619 VLC_API input_thread_t
*input_CreatePreparser(vlc_object_t
*obj
,
620 input_thread_events_cb events_cb
,
621 void *events_data
, input_item_t
*item
)
624 VLC_API
int input_Start( input_thread_t
* );
626 VLC_API
void input_Stop( input_thread_t
* );
628 VLC_API
int input_Read( vlc_object_t
*, input_item_t
*,
629 input_thread_events_cb
, void * );
630 #define input_Read(a,b,c,d) input_Read(VLC_OBJECT(a),b,c,d)
632 VLC_API
int input_vaControl( input_thread_t
*, int i_query
, va_list );
634 VLC_API
int input_Control( input_thread_t
*, int i_query
, ... );
636 VLC_API
void input_Close( input_thread_t
* );
638 VLC_API
void input_SetTime( input_thread_t
*, vlc_tick_t i_time
, bool b_fast
);
640 VLC_API
void input_SetPosition( input_thread_t
*, float f_position
, bool b_fast
);
642 VLC_API
void input_LegacyEvents(input_thread_t
*, const struct vlc_input_event
*, void * );
643 VLC_API
void input_LegacyVarInit ( input_thread_t
* );
646 * Get the input item for an input thread
648 * You have to keep a reference to the input or to the input_item_t until
649 * you do not need it anymore.
651 VLC_API input_item_t
* input_GetItem( input_thread_t
* ) VLC_USED
;
654 * Return one of the video output (if any). If possible, you should use
655 * INPUT_GET_VOUTS directly and process _all_ video outputs instead.
656 * @param p_input an input thread from which to get a video output
657 * @return NULL on error, or a video output thread pointer (which needs to be
658 * released with vlc_object_release()).
660 static inline vout_thread_t
*input_GetVout( input_thread_t
*p_input
)
662 vout_thread_t
**pp_vout
, *p_vout
;
665 if( input_Control( p_input
, INPUT_GET_VOUTS
, &pp_vout
, &i_vout
) )
668 for( size_t i
= 1; i
< i_vout
; i
++ )
669 vlc_object_release( (vlc_object_t
*)(pp_vout
[i
]) );
671 p_vout
= (i_vout
>= 1) ? pp_vout
[0] : NULL
;
676 static inline int input_AddSlave( input_thread_t
*p_input
, enum slave_type type
,
677 const char *psz_uri
, bool b_forced
,
678 bool b_notify
, bool b_check_ext
)
680 return input_Control( p_input
, INPUT_ADD_SLAVE
, type
, psz_uri
, b_forced
,
681 b_notify
, b_check_ext
);
685 * Update the viewpoint of the input thread. The viewpoint will be applied to
686 * all vouts and aouts.
688 * @param p_input an input thread
689 * @param p_viewpoint the viewpoint value
690 * @param b_absolute if true replace the old viewpoint with the new one. If
691 * false, increase/decrease it.
692 * @return VLC_SUCCESS or a VLC error code
694 static inline int input_UpdateViewpoint( input_thread_t
*p_input
,
695 const vlc_viewpoint_t
*p_viewpoint
,
698 return input_Control( p_input
, INPUT_UPDATE_VIEWPOINT
, p_viewpoint
,
703 * Return the audio output (if any) associated with an input.
704 * @param p_input an input thread
705 * @return NULL on error, or the audio output (which needs to be
706 * released with vlc_object_release()).
708 static inline audio_output_t
*input_GetAout( input_thread_t
*p_input
)
710 audio_output_t
*p_aout
;
711 return input_Control( p_input
, INPUT_GET_AOUT
, &p_aout
) ? NULL
: p_aout
;
715 * Returns the objects associated to an ES.
717 * You must release all non NULL object using vlc_object_release.
718 * You may set pointer of pointer to NULL to avoid retreiving it.
720 static inline int input_GetEsObjects( input_thread_t
*p_input
, int i_id
,
721 vlc_object_t
**pp_decoder
,
722 vout_thread_t
**pp_vout
, audio_output_t
**pp_aout
)
724 return input_Control( p_input
, INPUT_GET_ES_OBJECTS
, i_id
,
725 pp_decoder
, pp_vout
, pp_aout
);
729 * \see input_clock_GetSystemOrigin
731 static inline int input_GetPcrSystem( input_thread_t
*p_input
, vlc_tick_t
*pi_system
, vlc_tick_t
*pi_delay
)
733 return input_Control( p_input
, INPUT_GET_PCR_SYSTEM
, pi_system
, pi_delay
);
736 * \see input_clock_ChangeSystemOrigin
738 static inline int input_ModifyPcrSystem( input_thread_t
*p_input
, bool b_absolute
, vlc_tick_t i_system
)
740 return input_Control( p_input
, INPUT_MODIFY_PCR_SYSTEM
, b_absolute
, i_system
);
744 VLC_API decoder_t
* input_DecoderCreate( vlc_object_t
*, const es_format_t
*, input_resource_t
* ) VLC_USED
;
745 VLC_API
void input_DecoderDelete( decoder_t
* );
746 VLC_API
void input_DecoderDecode( decoder_t
*, block_t
*, bool b_do_pace
);
747 VLC_API
void input_DecoderDrain( decoder_t
* );
748 VLC_API
void input_DecoderFlush( decoder_t
* );
749 VLC_API
int input_DecoderSetSpuHighlight( decoder_t
*, const vlc_spu_highlight_t
* );
752 * This function creates a sane filename path.
754 VLC_API
char * input_CreateFilename( input_thread_t
*, input_item_t
*,
755 const char *psz_path
, const char *psz_prefix
,
756 const char *psz_extension
) VLC_USED
;
759 * It creates an empty input resource handler.
761 * The given object MUST stay alive as long as the input_resource_t is
764 VLC_API input_resource_t
* input_resource_New( vlc_object_t
* ) VLC_USED
;
767 * It releases an input resource.
769 VLC_API
void input_resource_Release( input_resource_t
* );
772 * Forcefully destroys the video output (e.g. when the playlist is stopped).
774 VLC_API
void input_resource_TerminateVout( input_resource_t
* );
777 * This function releases all resources (object).
779 VLC_API
void input_resource_Terminate( input_resource_t
* );
782 * \return the current audio output if any.
783 * Use vlc_object_release() to drop the reference.
785 VLC_API audio_output_t
*input_resource_HoldAout( input_resource_t
* );
788 * This function creates or recycles an audio output.
790 VLC_API audio_output_t
*input_resource_GetAout( input_resource_t
* );
793 * This function retains or destroys an audio output.
795 VLC_API
void input_resource_PutAout( input_resource_t
*, audio_output_t
* );
798 * Prevents the existing audio output (if any) from being recycled.
800 VLC_API
void input_resource_ResetAout( input_resource_t
* );