VLC 4.0.0-dev
Loading...
Searching...
No Matches
input_internal.h
Go to the documentation of this file.
1/*****************************************************************************
2 * input_internal.h: Internal input structures
3 *****************************************************************************
4 * Copyright (C) 1998-2006 VLC authors and VideoLAN
5 *
6 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Lesser General Public License as published by
10 * the Free Software Foundation; either version 2.1 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 *****************************************************************************/
22
23#ifndef LIBVLC_INPUT_INTERNAL_H
24#define LIBVLC_INPUT_INTERNAL_H 1
25
26#include <vlc_demux.h>
27#include <vlc_input.h>
28#include <vlc_mouse.h>
29#include "input_interface.h"
30#include "../misc/interrupt.h"
31#include "./source.h"
32
33struct input_stats;
34
35/*****************************************************************************
36 * input defines/constants.
37 *****************************************************************************/
38
39/**
40 * Main structure representing an input thread. This structure is mostly
41 * private. The only public fields are read-only and constant.
42 */
47
48/*****************************************************************************
49 * Input events and variables
50 *****************************************************************************/
51
57
58/**
59 * Input state
60 *
61 * This enum is used by the variable "state"
62 */
72
73/**
74 * Input events
75 *
76 * You can catch input event by adding a callback on the variable "intf-event".
77 * This variable is an integer that will hold a input_event_type_e value.
78 */
80{
81 /* "state" has changed */
83 /* b_dead is true */
85
86 /* "rate" has changed */
88
89 /* "capabilities" has changed */
91
92 /* At least one of "position", "time" "length" has changed */
94
95 /* The output PTS changed */
97
98 /* A title has been added or removed or selected.
99 * It implies that the chapter has changed (no chapter event is sent) */
101 /* A chapter has been added or removed or selected. */
103
104 /* A program ("program") has been added or removed or selected,
105 * or "program-scrambled" has changed.*/
107 /* A ES has been added or removed or selected */
109
110 /* "record" has changed */
112
113 /* input_item_t media has changed */
115 /* input_item_t info has changed */
117 /* input_item_t epg has changed */
119
120 /* Input statistics have been updated */
122 /* At least one of "signal-quality" or "signal-strength" has changed */
124
125 /* "bookmark" has changed */
127
128 /* cache" has changed */
130
131 /* A vout_thread_t object has been created/deleted by *the input* */
133
134 /* (pre-)parsing events */
136
137 /* vbi_page has changed */
139 /* vbi_transparent has changed */
141
142 /* subs_fps has changed */
144
145 /* Thumbnail generation */
147
148 /* Attachments */
150
151 /* The demux is not able to navigate */
153
154 /* Mouse event */
157
158#define VLC_INPUT_CAPABILITIES_SEEKABLE (1<<0)
159#define VLC_INPUT_CAPABILITIES_PAUSEABLE (1<<1)
160#define VLC_INPUT_CAPABILITIES_CHANGE_RATE (1<<2)
161#define VLC_INPUT_CAPABILITIES_REWINDABLE (1<<3)
162
164{
166 /* Only valid for PAUSE_S and PLAYING_S states */
168};
169
178
189
191{
192 enum {
196 union
197 {
198 struct
199 {
201 size_t count;
204 };
205};
206
212
227
229 enum {
236 /**
237 * ES track id: only valid from the event callback, unless the id is held
238 * by the user with vlc_es_Hold(). */
240 /**
241 * Title of ES track, can be updated after the VLC_INPUT_ES_UPDATED event.
242 */
243 const char *title;
244 /**
245 * ES track information, can be updated after the VLC_INPUT_ES_UPDATED event.
246 */
248 /**
249 * Only valid with VLC_INPUT_ES_SELECTED, true if the track was selected by
250 * the user.
251 */
252 bool forced;
253
255};
256
261
272
278
284
286{
288
289 union {
290 /* INPUT_EVENT_STATE */
292 /* INPUT_EVENT_RATE */
293 float rate;
294 /* INPUT_EVENT_CAPABILITIES */
295 int capabilities; /**< cf. VLC_INPUT_CAPABILITIES_* bitwise flags */
296 /* INPUT_EVENT_TIMES */
298 /* INPUT_EVENT_OUTPUT_CLOCK */
300 /* INPUT_EVENT_TITLE */
302 /* INPUT_EVENT_CHAPTER */
304 /* INPUT_EVENT_PROGRAM */
306 /* INPUT_EVENT_ES */
308 /* INPUT_EVENT_RECORD */
309 bool record;
310 /* INPUT_EVENT_STATISTICS */
311 const struct input_stats_t *stats;
312 /* INPUT_EVENT_SIGNAL */
314 /* INPUT_EVENT_CACHE */
315 float cache;
316 /* INPUT_EVENT_VOUT */
318 /* INPUT_EVENT_SUBITEMS */
320 /* INPUT_EVENT_VBI_PAGE */
321 unsigned vbi_page;
322 /* INPUT_EVENT_VBI_TRANSPARENCY */
324 /* INPUT_EVENT_SUBS_FPS */
325 float subs_fps;
326 /* INPUT_EVENT_THUMBNAIL_READY */
328 /* INPUT_EVENT_ATTACHMENTS */
330 /* INPUT_EVENT_NAV_FAILED */
332 };
333};
334
336{
337 bool (*on_event)(input_thread_t *input, const struct vlc_input_event *event,
338 void *userdata);
339};
340
360/**
361 * Create a new input_thread_t.
362 *
363 * You need to call input_Start on it when you are done
364 * adding callback on the variables/events you want to monitor.
365 *
366 * \param p_parent a vlc_object
367 * \param p_item an input item
368 * \param cfg pointer to a configuration struct, mandatory
369 * \return a pointer to the spawned input thread
370 */
372 const struct vlc_input_thread_cfg *cfg ) VLC_USED;
373#define input_Create(a,b,c) input_Create(VLC_OBJECT(a),b,c)
374
376
377void input_Stop( input_thread_t * );
378
380
381void input_SetTime( input_thread_t *, vlc_tick_t i_time, bool b_fast );
382
383void input_SetPosition( input_thread_t *, double f_position, bool b_fast );
384
385/**
386 * Set the delay of an ES identifier
387 */
389 vlc_tick_t delay);
390
391/**
392 * Get the input item for an input thread
393 *
394 * You have to keep a reference to the input or to the input_item_t until
395 * you do not need it anymore.
396 */
398
399/*****************************************************************************
400 * Private input fields
401 *****************************************************************************/
402
403#define INPUT_CONTROL_FIFO_SIZE 100
404
405typedef union
406{
410 struct {
414 struct {
417 } time;
418 struct {
419 bool b_fast_seek;
420 double f_val;
421 } pos;
422 struct
423 {
424 enum es_format_category_e cat;
426 } cat_delay;
427 struct
428 {
429 enum es_format_category_e cat;
430 char *str_ids;
431 } cat_ids;
432 struct
433 {
434 vlc_es_id_t *id;
435 vlc_tick_t delay;
436 } es_delay;
437 struct {
438 vlc_es_id_t *id;
439 unsigned page;
440 } vbi_page;
441 struct {
442 vlc_es_id_t *id;
444 } vbi_transparency;
445 struct {
446 bool enabled;
447 char *dir_path;
448 } record_state;
450
456
457/** Private input fields */
459{
461
463 void *cbs_data;
464
466 bool hw_dec;
468
469 /* Current state */
474 float rate;
475
476 /* Playtime configuration and state */
477 vlc_tick_t i_start; /* :start-time,0 by default */
478 vlc_tick_t i_stop; /* :stop-time, 0 if none */
479
480 /* Delays */
483
484 /* Output */
485 bool b_out_pace_control; /* XXX Move it ot es_sout ? */
486 sout_stream_t *p_sout; /* Idem ? */
492
493
496
497 /* Input attachment */
500
501 /* Main input properties */
502
503 /* Input item */
505
506 /* Main source */
508 /* Slave sources (subs, and others) */
509 size_t i_slave;
512
513 /* Resources */
515
516 /* Stats counters */
518
519 /* Buffer of pending actions */
522 size_t i_control;
524
528
530{
531 return container_of(input, input_thread_private_t, input);
532}
533
534/***************************************************************************
535 * Internal control helpers
536 ***************************************************************************/
538{
540
542
544
546
548
552
556
558
559 INPUT_CONTROL_NAV_ACTIVATE, // NOTE: INPUT_CONTROL_NAV_* values must be
560 INPUT_CONTROL_NAV_UP, // contiguous and in the same order as
561 INPUT_CONTROL_NAV_DOWN, // INPUT_NAV_* and DEMUX_NAV_*.
566
568 INPUT_CONTROL_SET_ES_LIST, // select a list of ES atomically
572
573 INPUT_CONTROL_SET_VIEWPOINT, // new absolute viewpoint
574 INPUT_CONTROL_SET_INITIAL_VIEWPOINT, // set initial viewpoint (generally from video)
575 INPUT_CONTROL_UPDATE_VIEWPOINT, // update viewpoint relative to current
576
579
582
584
586
588
591};
592
593/* Internal helpers */
594
596
597/* XXX for string value you have to allocate it before calling
598 * input_ControlPushHelper
599 */
600static inline int input_ControlPushHelper( input_thread_t *p_input, int i_type, vlc_value_t *val )
601{
602 if( val != NULL )
603 {
604 input_control_param_t param = { .val = *val };
605 return input_ControlPush( p_input, i_type, &param );
606 }
607 else
608 {
609 return input_ControlPush( p_input, i_type, NULL );
610 }
611}
612
613static inline int input_ControlPushEsHelper( input_thread_t *p_input, int i_type,
614 vlc_es_id_t *id )
615{
618 return input_ControlPush( p_input, i_type, &(input_control_param_t) {
619 .id = vlc_es_id_Hold( id ),
620 } );
621}
622
623/**
624 * Set the program id
625 *
626 * cf. ES_OUT_SET_GROUP
627 * This function can be called before start or while started.
628 * This function is not thread-safe, the caller should handle the locking.
629 */
630void input_SetProgramId(input_thread_t *input, int group_id);
631
632/**
633 * Set the default delay applied to the given category.
634 *
635 * Set the default delay for the given \p es_format_category_e synchronously
636 * if the input is not running yet, otherwise push a control to signal to the
637 * input which delay should be updated.
638 *
639 * @param input Any input to change the delay for.
640 * @param cat The ES category to apply the delay to.
641 * @param delay The delay to apply to the category, a positive delay shifting
642 * the track to the future.
643 * @return VLC_SUCCESS when the delay has been applied, or signal an error
644 * otherwise.
645 *
646 * @note This function can be called before start or while running.
647 * @note This function is not thread-safe, the caller should handle the locking.
648 */
650 vlc_tick_t delay);
651
652/**
653 * Set the list of string ids to enable for a category
654 *
655 * cf. ES_OUT_SET_ES_CAT_IDS
656 * This function can be called before start or while started.
657 * This function is not thread-safe, the caller should handle the locking.
658 */
660 const char *str_ids);
661
663
664int input_GetAttachments(input_thread_t *input, input_attachment_t ***attachments);
665
667
669
670/**
671 * Calculates the duration of the item in an input thread.
672 *
673 * This function determines the duration of a track item based on the start and
674 * stop times stored in the input thread's private data. If the stop time is not
675 * set (i.e., equals zero), the function considers the given `duration` as the
676 * stop time and calculates the effective duration based on the start time.
677 * Otherwise, it calculates the duration using the set start and stop times.
678 *
679 * @param input Pointer to the input_thread_t object.
680 * @param duration The initial duration value, used if the stop time is not set.
681 *
682 * @return The calculated duration based on the start and stop times.
683 */
685
686/* Bound pts_delay */
687#define INPUT_PTS_DELAY_MAX VLC_TICK_FROM_SEC(60)
688
689/**********************************************************************
690 * Item metadata
691 **********************************************************************/
692/* input_ExtractAttachmentAndCacheArt:
693 * Be careful: p_item lock will be taken! */
695
696/***************************************************************************
697 * Internal prototypes
698 ***************************************************************************/
699
700/* var.c */
701
703 bool playback, bool do_inherit);
704
705/* Subtitles */
706int subtitles_Detect( input_thread_t *, char *, const char *, input_item_slave_t ***, int * );
707int subtitles_Filter( const char *);
708
709/* stats.c */
710typedef struct input_rate_t
711{
713 uintmax_t updates;
714 uintmax_t value;
715 struct
716 {
717 uintmax_t value;
721
725 atomic_uintmax_t demux_corrupted;
726 atomic_uintmax_t demux_discontinuity;
727 atomic_uintmax_t decoded_audio;
728 atomic_uintmax_t decoded_video;
729 atomic_uintmax_t played_abuffers;
730 atomic_uintmax_t lost_abuffers;
731 atomic_uintmax_t displayed_pictures;
732 atomic_uintmax_t late_pictures;
733 atomic_uintmax_t lost_pictures;
734};
735
736struct input_stats *input_stats_Create(void);
737void input_stats_Destroy(struct input_stats *);
738void input_rate_Add(input_rate_t *, uintmax_t);
740
741#endif
struct vlc_param ** list
Definition core.c:402
vlc_es_id_t * vlc_es_id_Hold(vlc_es_id_t *id)
Increase the ES track id reference count.
Definition es_out.c:4697
#define VLC_USED
Definition fourcc_gen.c:32
vlc_vout_order
vout or spu_channel order
Definition vlc_vout.h:70
const char name[16]
Definition httpd.c:1298
int i_type
Definition httpd.c:1299
bool input_CanPaceControl(input_thread_t *input)
Definition input.c:3515
input_type
Definition input_internal.h:52
@ INPUT_TYPE_PLAYBACK
Definition input_internal.h:53
@ INPUT_TYPE_THUMBNAILING
Definition input_internal.h:55
@ INPUT_TYPE_PREPARSING
Definition input_internal.h:54
void input_rate_Add(input_rate_t *, uintmax_t)
Update a counter element with new values.
Definition stats.c:121
bool input_Stopped(input_thread_t *)
Definition input.c:446
void input_SetPosition(input_thread_t *, double f_position, bool b_fast)
Definition input.c:188
int subtitles_Detect(input_thread_t *, char *, const char *, input_item_slave_t ***, int *)
Detect subtitle files.
Definition subtitles.c:220
void input_stats_Destroy(struct input_stats *)
Definition stats.c:74
void input_SetEsCatIds(input_thread_t *, enum es_format_category_e cat, const char *str_ids)
Set the list of string ids to enable for a category.
Definition input.c:1873
input_event_type_e
Input events.
Definition input_internal.h:80
@ INPUT_EVENT_MOUSE_LEFT
Definition input_internal.h:155
@ INPUT_EVENT_THUMBNAIL_READY
Definition input_internal.h:146
@ INPUT_EVENT_SUBITEMS
Definition input_internal.h:135
@ INPUT_EVENT_CHAPTER
Definition input_internal.h:102
@ INPUT_EVENT_ITEM_EPG
Definition input_internal.h:118
@ INPUT_EVENT_OUTPUT_CLOCK
Definition input_internal.h:96
@ INPUT_EVENT_SIGNAL
Definition input_internal.h:123
@ INPUT_EVENT_ITEM_META
Definition input_internal.h:114
@ INPUT_EVENT_RATE
Definition input_internal.h:87
@ INPUT_EVENT_TITLE
Definition input_internal.h:100
@ INPUT_EVENT_DEAD
Definition input_internal.h:84
@ INPUT_EVENT_ES
Definition input_internal.h:108
@ INPUT_EVENT_RECORD
Definition input_internal.h:111
@ INPUT_EVENT_ATTACHMENTS
Definition input_internal.h:149
@ INPUT_EVENT_CAPABILITIES
Definition input_internal.h:90
@ INPUT_EVENT_STATISTICS
Definition input_internal.h:121
@ INPUT_EVENT_ITEM_INFO
Definition input_internal.h:116
@ INPUT_EVENT_BOOKMARK
Definition input_internal.h:126
@ INPUT_EVENT_PROGRAM
Definition input_internal.h:106
@ INPUT_EVENT_TIMES
Definition input_internal.h:93
@ INPUT_EVENT_STATE
Definition input_internal.h:82
@ INPUT_EVENT_VOUT
Definition input_internal.h:132
@ INPUT_EVENT_SUBS_FPS
Definition input_internal.h:143
@ INPUT_EVENT_NAV_FAILED
Definition input_internal.h:152
@ INPUT_EVENT_VBI_PAGE
Definition input_internal.h:138
@ INPUT_EVENT_CACHE
Definition input_internal.h:129
@ INPUT_EVENT_VBI_TRANSPARENCY
Definition input_internal.h:140
input_state_e
Input state.
Definition input_internal.h:64
@ PAUSE_S
Definition input_internal.h:68
@ PLAYING_S
Definition input_internal.h:67
@ END_S
Definition input_internal.h:69
@ OPENING_S
Definition input_internal.h:66
@ INIT_S
Definition input_internal.h:65
@ ERROR_S
Definition input_internal.h:70
int subtitles_Filter(const char *)
Definition subtitles.c:145
input_item_t * input_GetItem(input_thread_t *)
Get the input item for an input thread.
Definition input.c:203
static int input_ControlPushEsHelper(input_thread_t *p_input, int i_type, vlc_es_id_t *id)
Definition input_internal.h:613
void input_ExtractAttachmentAndCacheArt(input_thread_t *, const char *name)
Definition meta.c:254
input_attachment_t * input_GetAttachment(input_thread_t *input, const char *name)
Definition input.c:3496
void input_SetEsIdDelay(input_thread_t *input, vlc_es_id_t *es_id, vlc_tick_t delay)
Set the delay of an ES identifier.
int input_GetAttachments(input_thread_t *input, input_attachment_t ***attachments)
Definition input.c:3468
void input_SetProgramId(input_thread_t *input, int group_id)
Set the program id.
Definition input.c:1856
void vlc_object_InitInputConfig(vlc_object_t *obj, bool playback, bool do_inherit)
Definition var.c:39
void input_Stop(input_thread_t *)
Request a running input thread to stop and die.
Definition input.c:148
int input_Start(input_thread_t *)
Start a input_thread_t created by input_Create.
Definition input.c:124
static int input_ControlPushHelper(input_thread_t *p_input, int i_type, vlc_value_t *val)
Definition input_internal.h:600
input_control_e
Definition input_internal.h:538
@ INPUT_CONTROL_SET_ES_DELAY
Definition input_internal.h:578
@ INPUT_CONTROL_SET_TITLE_NEXT
Definition input_internal.h:550
@ INPUT_CONTROL_RESTART_ES
Definition input_internal.h:570
@ INPUT_CONTROL_SET_TITLE
Definition input_internal.h:549
@ INPUT_CONTROL_NAV_MENU
Definition input_internal.h:565
@ INPUT_CONTROL_SET_STATE
Definition input_internal.h:539
@ INPUT_CONTROL_NAV_LEFT
Definition input_internal.h:562
@ INPUT_CONTROL_SET_VBI_PAGE
Definition input_internal.h:589
@ INPUT_CONTROL_SET_FRAME_NEXT
Definition input_internal.h:585
@ INPUT_CONTROL_SET_RATE
Definition input_internal.h:541
@ INPUT_CONTROL_SET_ES_LIST
Definition input_internal.h:568
@ INPUT_CONTROL_SET_VBI_TRANSPARENCY
Definition input_internal.h:590
@ INPUT_CONTROL_NAV_DOWN
Definition input_internal.h:561
@ INPUT_CONTROL_SET_BOOKMARK
Definition input_internal.h:557
@ INPUT_CONTROL_SET_TIME
Definition input_internal.h:545
@ INPUT_CONTROL_NAV_ACTIVATE
Definition input_internal.h:559
@ INPUT_CONTROL_SET_RECORD_STATE
Definition input_internal.h:583
@ INPUT_CONTROL_UNSET_ES
Definition input_internal.h:569
@ INPUT_CONTROL_SET_INITIAL_VIEWPOINT
Definition input_internal.h:574
@ INPUT_CONTROL_SET_ES_CAT_IDS
Definition input_internal.h:571
@ INPUT_CONTROL_UPDATE_VIEWPOINT
Definition input_internal.h:575
@ INPUT_CONTROL_SET_SEEKPOINT_NEXT
Definition input_internal.h:554
@ INPUT_CONTROL_NAV_UP
Definition input_internal.h:560
@ INPUT_CONTROL_SET_ES
Definition input_internal.h:567
@ INPUT_CONTROL_SET_VIEWPOINT
Definition input_internal.h:573
@ INPUT_CONTROL_ADD_SLAVE
Definition input_internal.h:580
@ INPUT_CONTROL_NAV_RIGHT
Definition input_internal.h:563
@ INPUT_CONTROL_SET_PROGRAM
Definition input_internal.h:547
@ INPUT_CONTROL_SET_CATEGORY_DELAY
Definition input_internal.h:577
@ INPUT_CONTROL_SET_SUBS_FPS
Definition input_internal.h:581
@ INPUT_CONTROL_NAV_POPUP
Definition input_internal.h:564
@ INPUT_CONTROL_SET_RENDERER
Definition input_internal.h:587
@ INPUT_CONTROL_SET_POSITION
Definition input_internal.h:543
@ INPUT_CONTROL_SET_SEEKPOINT
Definition input_internal.h:553
@ INPUT_CONTROL_SET_SEEKPOINT_PREV
Definition input_internal.h:555
@ INPUT_CONTROL_SET_TITLE_PREV
Definition input_internal.h:551
int input_ControlPush(input_thread_t *, int, const input_control_param_t *)
Definition input.c:1544
vlc_tick_t input_GetItemDuration(input_thread_t *input, vlc_tick_t duration)
Calculates the duration of the item in an input thread.
Definition input.c:3521
struct input_stats * input_stats_Create(void)
Definition stats.c:54
#define INPUT_CONTROL_FIFO_SIZE
Definition input_internal.h:403
void input_Close(input_thread_t *)
Close an input.
Definition input.c:171
void input_stats_Compute(struct input_stats *, input_stats_t *)
Definition stats.c:79
void input_SetTime(input_thread_t *, vlc_tick_t i_time, bool b_fast)
Definition input.c:179
int input_SetEsCatDelay(input_thread_t *input, enum es_format_category_e cat, vlc_tick_t delay)
Set the default delay applied to the given category.
Definition input.c:1863
static input_thread_private_t * input_priv(input_thread_t *input)
Definition input_internal.h:529
#define input_Create(a, b, c)
Definition input_internal.h:373
Definition vlc_es.h:614
Definition vlc_input.h:168
Definition input_internal.h:452
int i_type
Definition input_internal.h:453
input_control_param_t param
Definition input_internal.h:454
Definition vlc_input_item.h:204
Definition vlc_input_item.h:196
Describes an input and is used to spawn input_thread_t objects.
Definition vlc_input_item.h:98
Definition input_internal.h:711
struct input_rate_t::@56 samples[2]
vlc_mutex_t lock
Definition input_internal.h:712
uintmax_t value
Definition input_internal.h:714
uintmax_t updates
Definition input_internal.h:713
vlc_tick_t date
Definition input_internal.h:718
Definition resource.c:58
Definition source.h:35
Definition vlc_input_item.h:529
Definition input_internal.h:722
atomic_uintmax_t lost_abuffers
Definition input_internal.h:730
atomic_uintmax_t demux_corrupted
Definition input_internal.h:725
atomic_uintmax_t lost_pictures
Definition input_internal.h:733
atomic_uintmax_t late_pictures
Definition input_internal.h:732
atomic_uintmax_t played_abuffers
Definition input_internal.h:729
atomic_uintmax_t displayed_pictures
Definition input_internal.h:731
atomic_uintmax_t decoded_video
Definition input_internal.h:728
input_rate_t input_bitrate
Definition input_internal.h:723
atomic_uintmax_t demux_discontinuity
Definition input_internal.h:726
input_rate_t demux_bitrate
Definition input_internal.h:724
atomic_uintmax_t decoded_audio
Definition input_internal.h:727
Private input fields.
Definition input_internal.h:459
int i_seekpoint_offset
Definition input_internal.h:495
sout_stream_t * p_sout
Definition input_internal.h:486
bool viewpoint_changed
Definition input_internal.h:490
struct vlc_input_es_out * p_es_out_display
Definition input_internal.h:488
int i_state
Definition input_internal.h:470
input_source_t ** slave
Definition input_internal.h:510
const struct vlc_input_thread_callbacks * cbs
Definition input_internal.h:462
struct input_stats * stats
Definition input_internal.h:517
size_t i_control
Definition input_internal.h:522
float rate
Definition input_internal.h:474
bool preparse_subitems
Definition input_internal.h:467
input_attachment_t ** attachment
Definition input_internal.h:499
int i_attachment
Definition input_internal.h:498
bool b_out_pace_control
Definition input_internal.h:485
enum input_type type
Definition input_internal.h:465
vlc_tick_t i_start
Definition input_internal.h:477
vlc_renderer_item_t * p_renderer
Definition input_internal.h:491
vlc_tick_t i_stop
Definition input_internal.h:478
input_control_t control[100]
Definition input_internal.h:523
vlc_interrupt_t interrupt
Definition input_internal.h:526
float slave_subs_rate
Definition input_internal.h:511
input_item_t * p_item
Definition input_internal.h:504
void * cbs_data
Definition input_internal.h:463
size_t i_slave
Definition input_internal.h:509
bool is_running
Definition input_internal.h:471
bool hw_dec
Definition input_internal.h:466
bool b_low_delay
Definition input_internal.h:481
bool b_recording
Definition input_internal.h:473
int i_title_offset
Definition input_internal.h:494
vlc_cond_t wait_control
Definition input_internal.h:521
vlc_mutex_t lock_control
Definition input_internal.h:520
vlc_tick_t i_jitter_max
Definition input_internal.h:482
vlc_viewpoint_t viewpoint
Definition input_internal.h:489
input_resource_t * p_resource
Definition input_internal.h:514
struct vlc_input_es_out * p_es_out
Definition input_internal.h:487
input_source_t * master
Definition input_internal.h:507
bool is_stopped
Definition input_internal.h:472
struct input_thread_t input
Definition input_internal.h:460
vlc_thread_t thread
Definition input_internal.h:525
Main structure representing an input thread.
Definition input_internal.h:44
struct vlc_object_t obj
Definition input_internal.h:45
Definition vlc_input.h:102
Video picture.
Definition vlc_picture.h:128
Definition vlc_sout.h:274
Condition variable.
Definition vlc_threads.h:270
Opaque structure representing an ES (Elementary Stream) track.
Definition es_out.c:105
Definition es_out.h:116
Definition input_internal.h:274
size_t count
Definition input_internal.h:276
input_attachment_t *const * array
Definition input_internal.h:275
Definition input_internal.h:208
int seekpoint
Definition input_internal.h:210
int title
Definition input_internal.h:209
Definition input_internal.h:228
enum vlc_vout_order vout_order
Definition input_internal.h:254
enum vlc_input_event_es::@41 action
bool forced
Only valid with VLC_INPUT_ES_SELECTED, true if the track was selected by the user.
Definition input_internal.h:252
const char * title
Title of ES track, can be updated after the VLC_INPUT_ES_UPDATED event.
Definition input_internal.h:243
const es_format_t * fmt
ES track information, can be updated after the VLC_INPUT_ES_UPDATED event.
Definition input_internal.h:247
@ VLC_INPUT_ES_SELECTED
Definition input_internal.h:233
@ VLC_INPUT_ES_UPDATED
Definition input_internal.h:232
@ VLC_INPUT_ES_DELETED
Definition input_internal.h:231
@ VLC_INPUT_ES_ADDED
Definition input_internal.h:230
@ VLC_INPUT_ES_UNSELECTED
Definition input_internal.h:234
vlc_es_id_t * id
ES track id: only valid from the event callback, unless the id is held by the user with vlc_es_Hold()...
Definition input_internal.h:239
Definition input_internal.h:280
vlc_mouse_t oldmouse
Definition input_internal.h:281
vlc_mouse_t newmouse
Definition input_internal.h:282
Definition input_internal.h:180
vlc_es_id_t * id
Definition input_internal.h:181
vlc_tick_t system_ts
Definition input_internal.h:183
unsigned frame_rate
Definition input_internal.h:186
double rate
Definition input_internal.h:185
vlc_tick_t ts
Definition input_internal.h:184
unsigned frame_rate_base
Definition input_internal.h:187
bool master
Definition input_internal.h:182
Definition input_internal.h:213
bool scrambled
Definition input_internal.h:224
const char * title
Definition input_internal.h:223
@ VLC_INPUT_PROGRAM_UPDATED
Definition input_internal.h:217
@ VLC_INPUT_PROGRAM_SCRAMBLED
Definition input_internal.h:219
@ VLC_INPUT_PROGRAM_SELECTED
Definition input_internal.h:218
@ VLC_INPUT_PROGRAM_DELETED
Definition input_internal.h:216
@ VLC_INPUT_PROGRAM_ADDED
Definition input_internal.h:215
int id
Definition input_internal.h:221
enum vlc_input_event_program::@38 action
Definition input_internal.h:257
float quality
Definition input_internal.h:258
float strength
Definition input_internal.h:259
Definition input_internal.h:164
vlc_tick_t date
Definition input_internal.h:167
input_state_e value
Definition input_internal.h:165
Definition input_internal.h:171
vlc_tick_t time
Definition input_internal.h:173
double position
Definition input_internal.h:172
vlc_tick_t normal_time
Definition input_internal.h:174
bool live
Definition input_internal.h:176
vlc_tick_t length
Definition input_internal.h:175
Definition input_internal.h:191
size_t selected_idx
Definition input_internal.h:203
size_t count
Definition input_internal.h:201
enum vlc_input_event_title::@34 action
struct vlc_input_event_title::@35::@37 list
@ VLC_INPUT_TITLE_NEW_LIST
Definition input_internal.h:193
@ VLC_INPUT_TITLE_SELECTED
Definition input_internal.h:194
input_title_t *const * array
Definition input_internal.h:200
Definition input_internal.h:263
enum vlc_input_event_vout::@42 action
vlc_es_id_t * id
Definition input_internal.h:270
enum vlc_vout_order order
Definition input_internal.h:269
@ VLC_INPUT_EVENT_VOUT_STOPPED
Definition input_internal.h:266
@ VLC_INPUT_EVENT_VOUT_STARTED
Definition input_internal.h:265
vout_thread_t * vout
Definition input_internal.h:268
Definition input_internal.h:286
struct vlc_input_event_state state
Definition input_internal.h:291
unsigned vbi_page
Definition input_internal.h:321
float cache
Definition input_internal.h:315
struct vlc_input_event_program program
Definition input_internal.h:305
int nav_type
Definition input_internal.h:331
struct vlc_input_event_signal signal
Definition input_internal.h:313
const struct input_stats_t * stats
Definition input_internal.h:311
struct vlc_input_event_chapter chapter
Definition input_internal.h:303
struct vlc_input_event_output_clock output_clock
Definition input_internal.h:299
struct vlc_input_event_title title
Definition input_internal.h:301
bool record
Definition input_internal.h:309
float rate
Definition input_internal.h:293
struct vlc_input_event_vout vout
Definition input_internal.h:317
struct vlc_input_event_es es
Definition input_internal.h:307
float subs_fps
Definition input_internal.h:325
struct vlc_input_event_times times
Definition input_internal.h:297
input_item_node_t * subitems
Definition input_internal.h:319
int capabilities
cf.
Definition input_internal.h:295
input_event_type_e type
Definition input_internal.h:287
picture_t * thumbnail
Definition input_internal.h:327
bool vbi_transparent
Definition input_internal.h:323
struct vlc_input_event_attachments attachments
Definition input_internal.h:329
Definition input_internal.h:336
bool(* on_event)(input_thread_t *input, const struct vlc_input_event *event, void *userdata)
Definition input_internal.h:337
Definition input_internal.h:342
enum input_type type
Definition input_internal.h:343
bool subitems
Definition input_internal.h:356
bool interact
Definition input_internal.h:358
struct vlc_input_thread_cfg::@46 preparsing
vlc_renderer_item_t * renderer
Definition input_internal.h:351
void * cbs_data
Definition input_internal.h:353
enum vlc_input_thread_cfg::@45 hw_dec
@ INPUT_CFG_HW_DEC_DEFAULT
Definition input_internal.h:346
@ INPUT_CFG_HW_DEC_ENABLED
Definition input_internal.h:348
@ INPUT_CFG_HW_DEC_DISABLED
Definition input_internal.h:347
const struct vlc_input_thread_callbacks * cbs
Definition input_internal.h:352
input_resource_t * resource
Definition input_internal.h:350
Definition interrupt.h:33
Mouse state.
Definition vlc_mouse.h:46
Mutex.
Definition vlc_threads.h:143
VLC object common members.
Definition vlc_objects.h:53
Definition renderer_discovery.c:36
Thread handle.
Definition vlc_threads.h:108
Viewpoints.
Definition vlc_viewpoint.h:41
Video output thread descriptor.
Definition vlc_vout.h:54
Definition input_internal.h:406
char * dir_path
Definition input_internal.h:447
double f_val
Definition input_internal.h:420
unsigned page
Definition input_internal.h:439
char * str_ids
Definition input_internal.h:430
vlc_es_id_t * id
Definition input_internal.h:409
vlc_es_id_t ** ids
Definition input_internal.h:412
bool b_fast_seek
Definition input_internal.h:415
vlc_tick_t i_val
Definition input_internal.h:416
bool enabled
Definition input_internal.h:443
enum es_format_category_e cat
Definition input_internal.h:411
vlc_tick_t delay
Definition input_internal.h:425
vlc_viewpoint_t viewpoint
Definition input_internal.h:408
vlc_value_t val
Definition input_internal.h:407
VLC value structure.
Definition vlc_variables.h:122
#define container_of(ptr, type, member)
Definition vlc_common.h:1069
Demultiplexer modules interface.
es_format_category_e
ES Categories.
Definition vlc_es.h:597
Input thread interface.
int64_t vlc_tick_t
High precision date or time interval.
Definition vlc_tick.h:48