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
33 * Input thread interface
39 #include <vlc_events.h>
40 #include <vlc_input_item.h>
42 #include <vlc_vout_osd.h>
46 /*****************************************************************************
47 * Seek point: (generalisation of chapters)
48 *****************************************************************************/
51 int64_t i_time_offset
;
55 static inline seekpoint_t
*vlc_seekpoint_New( void )
57 seekpoint_t
*point
= (seekpoint_t
*)malloc( sizeof( seekpoint_t
) );
60 point
->i_time_offset
= -1;
61 point
->psz_name
= NULL
;
65 static inline void vlc_seekpoint_Delete( seekpoint_t
*point
)
68 free( point
->psz_name
);
72 static inline seekpoint_t
*vlc_seekpoint_Duplicate( const seekpoint_t
*src
)
74 seekpoint_t
*point
= vlc_seekpoint_New();
77 if( src
->psz_name
) point
->psz_name
= strdup( src
->psz_name
);
78 point
->i_time_offset
= src
->i_time_offset
;
83 /*****************************************************************************
85 *****************************************************************************/
87 /* input_title_t.i_flags field */
88 #define INPUT_TITLE_MENU 0x01 /* Menu title */
89 #define INPUT_TITLE_INTERACTIVE 0x02 /* Interactive title. Playback position has no meaning. */
91 typedef struct input_title_t
95 int64_t i_length
; /* Length(microsecond) if known, else 0 */
97 unsigned i_flags
; /* Is it a menu or a normal entry */
101 seekpoint_t
**seekpoint
;
104 static inline input_title_t
*vlc_input_title_New(void)
106 input_title_t
*t
= (input_title_t
*)malloc( sizeof( input_title_t
) );
119 static inline void vlc_input_title_Delete( input_title_t
*t
)
126 for( i
= 0; i
< t
->i_seekpoint
; i
++ )
127 vlc_seekpoint_Delete( t
->seekpoint
[i
] );
128 free( t
->seekpoint
);
132 static inline input_title_t
*vlc_input_title_Duplicate( const input_title_t
*t
)
134 input_title_t
*dup
= vlc_input_title_New( );
135 if( dup
== NULL
) return NULL
;
137 if( t
->psz_name
) dup
->psz_name
= strdup( t
->psz_name
);
138 dup
->i_flags
= t
->i_flags
;
139 dup
->i_length
= t
->i_length
;
140 if( t
->i_seekpoint
> 0 )
142 dup
->seekpoint
= (seekpoint_t
**)malloc( t
->i_seekpoint
* sizeof(seekpoint_t
*) );
143 if( likely(dup
->seekpoint
) )
145 for( int i
= 0; i
< t
->i_seekpoint
; i
++ )
146 dup
->seekpoint
[i
] = vlc_seekpoint_Duplicate( t
->seekpoint
[i
] );
147 dup
->i_seekpoint
= t
->i_seekpoint
;
154 /*****************************************************************************
156 *****************************************************************************/
157 struct input_attachment_t
161 char *psz_description
;
167 static inline void vlc_input_attachment_Delete( input_attachment_t
*a
)
173 free( a
->psz_description
);
179 static inline input_attachment_t
*vlc_input_attachment_New( const char *psz_name
,
180 const char *psz_mime
,
181 const char *psz_description
,
185 input_attachment_t
*a
= (input_attachment_t
*)malloc( sizeof (*a
) );
186 if( unlikely(a
== NULL
) )
189 a
->psz_name
= strdup( psz_name
? psz_name
: "" );
190 a
->psz_mime
= strdup( psz_mime
? psz_mime
: "" );
191 a
->psz_description
= strdup( psz_description
? psz_description
: "" );
193 a
->p_data
= malloc( i_data
);
194 if( i_data
> 0 && likely(a
->p_data
!= NULL
) )
195 memcpy( a
->p_data
, p_data
, i_data
);
197 if( unlikely(a
->psz_name
== NULL
|| a
->psz_mime
== NULL
198 || a
->psz_description
== NULL
|| (i_data
> 0 && a
->p_data
== NULL
)) )
200 vlc_input_attachment_Delete( a
);
206 static inline input_attachment_t
*vlc_input_attachment_Duplicate( const input_attachment_t
*a
)
208 return vlc_input_attachment_New( a
->psz_name
, a
->psz_mime
, a
->psz_description
,
209 a
->p_data
, a
->i_data
);
212 /*****************************************************************************
213 * input defines/constants.
214 *****************************************************************************/
217 * This defines an opaque input resource handler.
219 typedef struct input_resource_t input_resource_t
;
222 * Main structure representing an input thread. This structure is mostly
223 * private. The only public fields are read-only and constant.
225 struct input_thread_t
231 * Record prefix string.
232 * TODO make it configurable.
234 #define INPUT_RECORD_PREFIX "vlc-record-%Y-%m-%d-%Hh%Mm%Ss-$ N-$ p"
236 /*****************************************************************************
237 * Input events and variables
238 *****************************************************************************/
241 * \defgroup inputvariable Input variables
243 * The input provides multiples variable you can write to and/or read from.
245 * TODO complete the documentation.
246 * The read only variables are:
248 * - "can-seek" (if you can seek, it doesn't say if 'bar display' has be shown
249 * or not, for that check position != 0.0)
253 * - "can-record" (if a stream can be recorded while playing)
254 * - "teletext-es" (list of id from the spu tracks (spu-es) that are teletext, the
255 * variable value being the one currently selected, -1 if no teletext)
257 * - "signal-strength"
258 * - "program-scrambled" (if the current program is scrambled)
259 * - "cache" (level of data cached [0 .. 1])
261 * The read-write variables are:
262 * - state (\see input_state_e)
265 * - time, time-offset
266 * - title, next-title, prev-title
267 * - chapter, next-chapter, next-chapter-prev
268 * - program, audio-es, video-es, spu-es
269 * - audio-delay, spu-delay
270 * - bookmark (bookmark list)
273 * - navigation (list of "title %2i")
276 * The variable used for event is
277 * - intf-event (\see input_event_type_e)
283 * This enum is used by the variable "state"
285 typedef enum input_state_e
298 * It is an float used by the variable "rate" in the
299 * range [INPUT_RATE_DEFAULT/INPUT_RATE_MAX, INPUT_RATE_DEFAULT/INPUT_RATE_MIN]
300 * the default value being 1. It represents the ratio of playback speed to
301 * nominal speed (bigger is faster).
303 * Internally, the rate is stored as a value in the range
304 * [INPUT_RATE_MIN, INPUT_RATE_MAX].
305 * internal rate = INPUT_RATE_DEFAULT / rate variable
311 #define INPUT_RATE_DEFAULT 1000
315 #define INPUT_RATE_MIN 32 /* Up to 32/1 */
319 #define INPUT_RATE_MAX 32000 /* Up to 1/32 */
324 * You can catch input event by adding a callback on the variable "intf-event".
325 * This variable is an integer that will hold a input_event_type_e value.
327 typedef enum input_event_type_e
329 /* "state" has changed */
334 /* "rate" has changed */
337 /* At least one of "position" or "time" */
338 INPUT_EVENT_POSITION
,
340 /* "length" has changed */
343 /* A title has been added or removed or selected.
344 * It implies that the chapter has changed (no chapter event is sent) */
346 /* A chapter has been added or removed or selected. */
349 /* A program ("program") has been added or removed or selected,
350 * or "program-scrambled" has changed.*/
352 /* A ES has been added or removed or selected */
354 /* "teletext-es" has changed */
355 INPUT_EVENT_TELETEXT
,
357 /* "record" has changed */
360 /* input_item_t media has changed */
361 INPUT_EVENT_ITEM_META
,
362 /* input_item_t info has changed */
363 INPUT_EVENT_ITEM_INFO
,
364 /* input_item_t epg has changed */
365 INPUT_EVENT_ITEM_EPG
,
367 /* Input statistics have been updated */
368 INPUT_EVENT_STATISTICS
,
369 /* At least one of "signal-quality" or "signal-strength" has changed */
372 /* "audio-delay" has changed */
373 INPUT_EVENT_AUDIO_DELAY
,
374 /* "spu-delay" has changed */
375 INPUT_EVENT_SUBTITLE_DELAY
,
377 /* "bookmark" has changed */
378 INPUT_EVENT_BOOKMARK
,
380 /* cache" has changed */
383 /* A audio_output_t object has been created/deleted by *the input* */
385 /* A vout_thread_t object has been created/deleted by *the input* */
388 } input_event_type_e
;
395 /* input variable "position" */
396 INPUT_GET_POSITION
, /* arg1= double * res= */
397 INPUT_SET_POSITION
, /* arg1= double res=can fail */
399 /* input variable "length" */
400 INPUT_GET_LENGTH
, /* arg1= int64_t * res=can fail */
402 /* input variable "time" */
403 INPUT_GET_TIME
, /* arg1= int64_t * res= */
404 INPUT_SET_TIME
, /* arg1= int64_t res=can fail */
406 /* input variable "rate" (nominal is INPUT_RATE_DEFAULT) */
407 INPUT_GET_RATE
, /* arg1= int * res= */
408 INPUT_SET_RATE
, /* arg1= int res=can fail */
410 /* input variable "state" */
411 INPUT_GET_STATE
, /* arg1= int * res= */
412 INPUT_SET_STATE
, /* arg1= int res=can fail */
414 /* input variable "audio-delay" and "sub-delay" */
415 INPUT_GET_AUDIO_DELAY
, /* arg1 = int* res=can fail */
416 INPUT_SET_AUDIO_DELAY
, /* arg1 = int res=can fail */
417 INPUT_GET_SPU_DELAY
, /* arg1 = int* res=can fail */
418 INPUT_SET_SPU_DELAY
, /* arg1 = int res=can fail */
420 /* Menu (VCD/DVD/BD) Navigation */
421 /** Activate the navigation item selected. res=can fail */
423 /** Use the up arrow to select a navigation item above. res=can fail */
425 /** Use the down arrow to select a navigation item under. res=can fail */
427 /** Use the left arrow to select a navigation item on the left. res=can fail */
429 /** Use the right arrow to select a navigation item on the right. res=can fail */
431 /** Activate the popup Menu (for BD). res=can fail */
433 /** Activate disc Root Menu. res=can fail */
437 INPUT_ADD_INFO
, /* arg1= char* arg2= char* arg3=... res=can fail */
438 INPUT_REPLACE_INFOS
,/* arg1= info_category_t * res=cannot fail */
439 INPUT_MERGE_INFOS
,/* arg1= info_category_t * res=cannot fail */
440 INPUT_DEL_INFO
, /* arg1= char* arg2= char* res=can fail */
443 INPUT_GET_BOOKMARK
, /* arg1= seekpoint_t * res=can fail */
444 INPUT_GET_BOOKMARKS
, /* arg1= seekpoint_t *** arg2= int * res=can fail */
445 INPUT_CLEAR_BOOKMARKS
, /* res=can fail */
446 INPUT_ADD_BOOKMARK
, /* arg1= seekpoint_t * res=can fail */
447 INPUT_CHANGE_BOOKMARK
, /* arg1= seekpoint_t * arg2= int * res=can fail */
448 INPUT_DEL_BOOKMARK
, /* arg1= seekpoint_t * res=can fail */
449 INPUT_SET_BOOKMARK
, /* arg1= int res=can fail */
452 INPUT_GET_TITLE_INFO
, /* arg1=input_title_t** arg2= int * res=can fail */
453 INPUT_GET_FULL_TITLE_INFO
, /* arg1=input_title_t*** arg2= int * res=can fail */
456 INPUT_GET_SEEKPOINTS
, /* arg1=seekpoint_t*** arg2= int * res=can fail */
459 INPUT_GET_ATTACHMENTS
, /* arg1=input_attachment_t***, arg2=int* res=can fail */
460 INPUT_GET_ATTACHMENT
, /* arg1=input_attachment_t**, arg2=char* res=can fail */
462 /* On the fly input slave */
463 INPUT_ADD_SLAVE
, /* arg1= enum slave_type, arg2= const char *, arg3= bool */
464 INPUT_ADD_SUBTITLE
, /* arg1= const char *, arg2=bool b_check_extension */
466 /* On the fly record while playing */
467 INPUT_SET_RECORD_STATE
, /* arg1=bool res=can fail */
468 INPUT_GET_RECORD_STATE
, /* arg1=bool* res=can fail */
471 INPUT_RESTART_ES
, /* arg1=int (-AUDIO/VIDEO/SPU_ES for the whole category) */
474 INPUT_UPDATE_VIEWPOINT
, /* arg1=(const vlc_viewpoint_t*), arg2=bool b_absolute */
477 * XXX You must call vlc_object_release as soon as possible */
478 INPUT_GET_AOUT
, /* arg1=audio_output_t ** res=can fail */
479 INPUT_GET_VOUTS
, /* arg1=vout_thread_t ***, size_t * res=can fail */
480 INPUT_GET_ES_OBJECTS
, /* arg1=int id, vlc_object_t **dec, vout_thread_t **, audio_output_t ** */
482 /* External clock managments */
483 INPUT_GET_PCR_SYSTEM
, /* arg1=mtime_t *, arg2=mtime_t * res=can fail */
484 INPUT_MODIFY_PCR_SYSTEM
,/* arg1=int absolute, arg2=mtime_t res=can fail */
489 /*****************************************************************************
491 *****************************************************************************/
493 VLC_API input_thread_t
* input_Create( vlc_object_t
*p_parent
, input_item_t
*, const char *psz_log
, input_resource_t
* ) VLC_USED
;
494 #define input_Create(a,b,c,d) input_Create(VLC_OBJECT(a),b,c,d)
496 VLC_API
int input_Start( input_thread_t
* );
498 VLC_API
void input_Stop( input_thread_t
* );
500 VLC_API
int input_Read( vlc_object_t
*, input_item_t
* );
501 #define input_Read(a,b) input_Read(VLC_OBJECT(a),b)
503 VLC_API
int input_vaControl( input_thread_t
*, int i_query
, va_list );
505 VLC_API
int input_Control( input_thread_t
*, int i_query
, ... );
507 VLC_API
void input_Close( input_thread_t
* );
510 * Create a new input_thread_t and start it.
512 * Provided for convenience.
517 input_thread_t
*input_CreateAndStart( vlc_object_t
*parent
,
518 input_item_t
*item
, const char *log
)
520 input_thread_t
*input
= input_Create( parent
, item
, log
, NULL
);
521 if( input
!= NULL
&& input_Start( input
) )
523 vlc_object_release( input
);
528 #define input_CreateAndStart(a,b,c) input_CreateAndStart(VLC_OBJECT(a),b,c)
531 * Get the input item for an input thread
533 * You have to keep a reference to the input or to the input_item_t until
534 * you do not need it anymore.
536 VLC_API input_item_t
* input_GetItem( input_thread_t
* ) VLC_USED
;
539 * It will return the current state of the input.
540 * Provided for convenience.
542 static inline input_state_e
input_GetState( input_thread_t
* p_input
)
544 input_state_e state
= INIT_S
;
545 input_Control( p_input
, INPUT_GET_STATE
, &state
);
550 * Return one of the video output (if any). If possible, you should use
551 * INPUT_GET_VOUTS directly and process _all_ video outputs instead.
552 * @param p_input an input thread from which to get a video output
553 * @return NULL on error, or a video output thread pointer (which needs to be
554 * released with vlc_object_release()).
556 static inline vout_thread_t
*input_GetVout( input_thread_t
*p_input
)
558 vout_thread_t
**pp_vout
, *p_vout
;
561 if( input_Control( p_input
, INPUT_GET_VOUTS
, &pp_vout
, &i_vout
) )
564 for( size_t i
= 1; i
< i_vout
; i
++ )
565 vlc_object_release( (vlc_object_t
*)(pp_vout
[i
]) );
567 p_vout
= (i_vout
>= 1) ? pp_vout
[0] : NULL
;
573 * It will add a new subtitle source to the input.
574 * Provided for convenience.
576 static inline int input_AddSubtitleOSD( input_thread_t
*p_input
, const char *psz_path
,
577 bool b_check_extension
, bool b_osd
)
579 int i_result
= input_Control( p_input
, INPUT_ADD_SUBTITLE
, psz_path
, b_check_extension
);
580 if( i_result
!= VLC_SUCCESS
|| !b_osd
)
583 vout_thread_t
*p_vout
= input_GetVout( p_input
);
586 vout_OSDMessage(p_vout
, VOUT_SPU_CHANNEL_OSD
, "%s",
587 vlc_gettext("Subtitle track added") );
588 vlc_object_release( (vlc_object_t
*)p_vout
);
592 #define input_AddSubtitle(a, b, c) input_AddSubtitleOSD(a, b, c, false)
594 static inline int input_AddSlave( input_thread_t
*p_input
, enum slave_type type
,
595 const char *psz_uri
, bool b_forced
)
597 return input_Control( p_input
, INPUT_ADD_SLAVE
, type
, psz_uri
, b_forced
);
601 * Update the viewpoint of the input thread. The viewpoint will be applied to
602 * all vouts and aouts.
604 * @param p_input an input thread
605 * @param p_viewpoint the viewpoint value
606 * @param b_absolute if true replace the old viewpoint with the new one. If
607 * false, increase/decrease it.
608 * @return VLC_SUCCESS or a VLC error code
610 static inline int input_UpdateViewpoint( input_thread_t
*p_input
,
611 const vlc_viewpoint_t
*p_viewpoint
,
614 return input_Control( p_input
, INPUT_UPDATE_VIEWPOINT
, p_viewpoint
,
619 * Return the audio output (if any) associated with an input.
620 * @param p_input an input thread
621 * @return NULL on error, or the audio output (which needs to be
622 * released with vlc_object_release()).
624 static inline audio_output_t
*input_GetAout( input_thread_t
*p_input
)
626 audio_output_t
*p_aout
;
627 return input_Control( p_input
, INPUT_GET_AOUT
, &p_aout
) ? NULL
: p_aout
;
631 * Returns the objects associated to an ES.
633 * You must release all non NULL object using vlc_object_release.
634 * You may set pointer of pointer to NULL to avoid retreiving it.
636 static inline int input_GetEsObjects( input_thread_t
*p_input
, int i_id
,
637 vlc_object_t
**pp_decoder
,
638 vout_thread_t
**pp_vout
, audio_output_t
**pp_aout
)
640 return input_Control( p_input
, INPUT_GET_ES_OBJECTS
, i_id
,
641 pp_decoder
, pp_vout
, pp_aout
);
645 * \see input_clock_GetSystemOrigin
647 static inline int input_GetPcrSystem( input_thread_t
*p_input
, mtime_t
*pi_system
, mtime_t
*pi_delay
)
649 return input_Control( p_input
, INPUT_GET_PCR_SYSTEM
, pi_system
, pi_delay
);
652 * \see input_clock_ChangeSystemOrigin
654 static inline int input_ModifyPcrSystem( input_thread_t
*p_input
, bool b_absolute
, mtime_t i_system
)
656 return input_Control( p_input
, INPUT_MODIFY_PCR_SYSTEM
, b_absolute
, i_system
);
660 VLC_API decoder_t
* input_DecoderCreate( vlc_object_t
*, const es_format_t
*, input_resource_t
* ) VLC_USED
;
661 VLC_API
void input_DecoderDelete( decoder_t
* );
662 VLC_API
void input_DecoderDecode( decoder_t
*, block_t
*, bool b_do_pace
);
663 VLC_API
void input_DecoderDrain( decoder_t
* );
664 VLC_API
void input_DecoderFlush( decoder_t
* );
667 * This function creates a sane filename path.
669 VLC_API
char * input_CreateFilename( input_thread_t
*, const char *psz_path
, const char *psz_prefix
, const char *psz_extension
) VLC_USED
;
672 * It creates an empty input resource handler.
674 * The given object MUST stay alive as long as the input_resource_t is
677 VLC_API input_resource_t
* input_resource_New( vlc_object_t
* ) VLC_USED
;
680 * It releases an input resource.
682 VLC_API
void input_resource_Release( input_resource_t
* );
685 * Forcefully destroys the video output (e.g. when the playlist is stopped).
687 VLC_API
void input_resource_TerminateVout( input_resource_t
* );
690 * This function releases all resources (object).
692 VLC_API
void input_resource_Terminate( input_resource_t
* );
695 * \return the current audio output if any.
696 * Use vlc_object_release() to drop the reference.
698 VLC_API audio_output_t
*input_resource_HoldAout( input_resource_t
* );
701 * This function creates or recycles an audio output.
703 VLC_API audio_output_t
*input_resource_GetAout( input_resource_t
* );
706 * This function retains or destroys an audio output.
708 VLC_API
void input_resource_PutAout( input_resource_t
*, audio_output_t
* );
711 * Prevents the existing audio output (if any) from being recycled.
713 VLC_API
void input_resource_ResetAout( input_resource_t
* );