vlc_input.h

Go to the documentation of this file.
00001 /*****************************************************************************
00002  * vlc_input.h: Core input structures
00003  *****************************************************************************
00004  * Copyright (C) 1999-2006 VLC authors and VideoLAN
00005  * $Id: 7d8320a75ce9b2263aa3ec1fe34090cc4f7cf732 $
00006  *
00007  * Authors: Christophe Massiot <massiot@via.ecp.fr>
00008  *          Laurent Aimar <fenrir@via.ecp.fr>
00009  *
00010  * This program is free software; you can redistribute it and/or modify it
00011  * under the terms of the GNU Lesser General Public License as published by
00012  * the Free Software Foundation; either version 2.1 of the License, or
00013  * (at your option) any later version.
00014  *
00015  * This program is distributed in the hope that it will be useful,
00016  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00017  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00018  * GNU Lesser General Public License for more details.
00019  *
00020  * You should have received a copy of the GNU Lesser General Public License
00021  * along with this program; if not, write to the Free Software Foundation,
00022  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
00023  *****************************************************************************/
00024 
00025 /* __ is need because conflict with <vlc/input.h> */
00026 #ifndef VLC_INPUT_H
00027 #define VLC_INPUT_H 1
00028 
00029 /**
00030  * \file
00031  * This file defines functions, structures and enums for input objects in vlc
00032  */
00033 
00034 #include <vlc_es.h>
00035 #include <vlc_meta.h>
00036 #include <vlc_epg.h>
00037 #include <vlc_events.h>
00038 #include <vlc_input_item.h>
00039 
00040 #include <string.h>
00041 
00042 /*****************************************************************************
00043  * Meta data helpers
00044  *****************************************************************************/
00045 static inline void vlc_audio_replay_gain_MergeFromMeta( audio_replay_gain_t *p_dst,
00046                                                         const vlc_meta_t *p_meta )
00047 {
00048     const char * psz_value;
00049 
00050     if( !p_meta )
00051         return;
00052 
00053     if( (psz_value = vlc_meta_GetExtra(p_meta, "REPLAYGAIN_TRACK_GAIN")) ||
00054         (psz_value = vlc_meta_GetExtra(p_meta, "RG_RADIO")) )
00055     {
00056         p_dst->pb_gain[AUDIO_REPLAY_GAIN_TRACK] = true;
00057         p_dst->pf_gain[AUDIO_REPLAY_GAIN_TRACK] = atof( psz_value );
00058     }
00059     else if( (psz_value = vlc_meta_GetExtra(p_meta, "REPLAYGAIN_TRACK_PEAK" )) ||
00060              (psz_value = vlc_meta_GetExtra(p_meta, "RG_PEAK" )) )
00061     {
00062         p_dst->pb_peak[AUDIO_REPLAY_GAIN_TRACK] = true;
00063         p_dst->pf_peak[AUDIO_REPLAY_GAIN_TRACK] = atof( psz_value );
00064     }
00065     else if( (psz_value = vlc_meta_GetExtra(p_meta, "REPLAYGAIN_ALBUM_GAIN" )) ||
00066              (psz_value = vlc_meta_GetExtra(p_meta, "RG_AUDIOPHILE" )) )
00067     {
00068         p_dst->pb_gain[AUDIO_REPLAY_GAIN_ALBUM] = true;
00069         p_dst->pf_gain[AUDIO_REPLAY_GAIN_ALBUM] = atof( psz_value );
00070     }
00071     else if( (psz_value = vlc_meta_GetExtra(p_meta, "REPLAYGAIN_ALBUM_PEAK" )) )
00072     {
00073         p_dst->pb_peak[AUDIO_REPLAY_GAIN_ALBUM] = true;
00074         p_dst->pf_peak[AUDIO_REPLAY_GAIN_ALBUM] = atof( psz_value );
00075     }
00076 }
00077 
00078 /*****************************************************************************
00079  * Seek point: (generalisation of chapters)
00080  *****************************************************************************/
00081 struct seekpoint_t
00082 {
00083     int64_t i_byte_offset;
00084     int64_t i_time_offset;
00085     char    *psz_name;
00086 };
00087 
00088 static inline seekpoint_t *vlc_seekpoint_New( void )
00089 {
00090     seekpoint_t *point = (seekpoint_t*)malloc( sizeof( seekpoint_t ) );
00091     point->i_byte_offset =
00092     point->i_time_offset = -1;
00093     point->psz_name = NULL;
00094     return point;
00095 }
00096 
00097 static inline void vlc_seekpoint_Delete( seekpoint_t *point )
00098 {
00099     if( !point ) return;
00100     free( point->psz_name );
00101     free( point );
00102 }
00103 
00104 static inline seekpoint_t *vlc_seekpoint_Duplicate( const seekpoint_t *src )
00105 {
00106     seekpoint_t *point = vlc_seekpoint_New();
00107     if( src->psz_name ) point->psz_name = strdup( src->psz_name );
00108     point->i_time_offset = src->i_time_offset;
00109     point->i_byte_offset = src->i_byte_offset;
00110     return point;
00111 }
00112 
00113 /*****************************************************************************
00114  * Title:
00115  *****************************************************************************/
00116 typedef struct
00117 {
00118     char        *psz_name;
00119 
00120     bool        b_menu;      /* Is it a menu or a normal entry */
00121 
00122     int64_t     i_length;   /* Length(microsecond) if known, else 0 */
00123     int64_t     i_size;     /* Size (bytes) if known, else 0 */
00124 
00125     /* Title seekpoint */
00126     int         i_seekpoint;
00127     seekpoint_t **seekpoint;
00128 
00129 } input_title_t;
00130 
00131 static inline input_title_t *vlc_input_title_New(void)
00132 {
00133     input_title_t *t = (input_title_t*)malloc( sizeof( input_title_t ) );
00134 
00135     t->psz_name = NULL;
00136     t->b_menu = false;
00137     t->i_length = 0;
00138     t->i_size   = 0;
00139     t->i_seekpoint = 0;
00140     t->seekpoint = NULL;
00141 
00142     return t;
00143 }
00144 
00145 static inline void vlc_input_title_Delete( input_title_t *t )
00146 {
00147     int i;
00148     if( t == NULL )
00149         return;
00150 
00151     free( t->psz_name );
00152     for( i = 0; i < t->i_seekpoint; i++ )
00153     {
00154         free( t->seekpoint[i]->psz_name );
00155         free( t->seekpoint[i] );
00156     }
00157     free( t->seekpoint );
00158     free( t );
00159 }
00160 
00161 static inline input_title_t *vlc_input_title_Duplicate( const input_title_t *t )
00162 {
00163     input_title_t *dup = vlc_input_title_New( );
00164     int i;
00165 
00166     if( t->psz_name ) dup->psz_name = strdup( t->psz_name );
00167     dup->b_menu      = t->b_menu;
00168     dup->i_length    = t->i_length;
00169     dup->i_size      = t->i_size;
00170     dup->i_seekpoint = t->i_seekpoint;
00171     if( t->i_seekpoint > 0 )
00172     {
00173         dup->seekpoint = (seekpoint_t**)calloc( t->i_seekpoint,
00174                                                 sizeof(seekpoint_t*) );
00175 
00176         for( i = 0; i < t->i_seekpoint; i++ )
00177         {
00178             dup->seekpoint[i] = vlc_seekpoint_Duplicate( t->seekpoint[i] );
00179         }
00180     }
00181 
00182     return dup;
00183 }
00184 
00185 /*****************************************************************************
00186  * Attachments
00187  *****************************************************************************/
00188 struct input_attachment_t
00189 {
00190     char *psz_name;
00191     char *psz_mime;
00192     char *psz_description;
00193 
00194     int  i_data;
00195     void *p_data;
00196 };
00197 
00198 static inline input_attachment_t *vlc_input_attachment_New( const char *psz_name,
00199                                                             const char *psz_mime,
00200                                                             const char *psz_description,
00201                                                             const void *p_data,
00202                                                             int i_data )
00203 {
00204     input_attachment_t *a =
00205         (input_attachment_t*)malloc( sizeof(input_attachment_t) );
00206     if( !a )
00207         return NULL;
00208     a->psz_name = strdup( psz_name ? psz_name : "" );
00209     a->psz_mime = strdup( psz_mime ? psz_mime : "" );
00210     a->psz_description = strdup( psz_description ? psz_description : "" );
00211     a->i_data = i_data;
00212     a->p_data = NULL;
00213     if( i_data > 0 )
00214     {
00215         a->p_data = malloc( i_data );
00216         if( a->p_data && p_data )
00217             memcpy( a->p_data, p_data, i_data );
00218     }
00219     return a;
00220 }
00221 static inline input_attachment_t *vlc_input_attachment_Duplicate( const input_attachment_t *a )
00222 {
00223     return vlc_input_attachment_New( a->psz_name, a->psz_mime, a->psz_description,
00224                                      a->p_data, a->i_data );
00225 }
00226 static inline void vlc_input_attachment_Delete( input_attachment_t *a )
00227 {
00228     if( !a )
00229         return;
00230     free( a->psz_name );
00231     free( a->psz_mime );
00232     free( a->psz_description );
00233     free( a->p_data );
00234     free( a );
00235 }
00236 
00237 /*****************************************************************************
00238  * input defines/constants.
00239  *****************************************************************************/
00240 
00241 /* i_update field of access_t/demux_t */
00242 #define INPUT_UPDATE_NONE       0x0000
00243 #define INPUT_UPDATE_SIZE       0x0001
00244 #define INPUT_UPDATE_TITLE      0x0010
00245 #define INPUT_UPDATE_SEEKPOINT  0x0020
00246 #define INPUT_UPDATE_META       0x0040
00247 #define INPUT_UPDATE_SIGNAL     0x0080
00248 
00249 /**
00250  * This defines private core storage for an input.
00251  */
00252 typedef struct input_thread_private_t input_thread_private_t;
00253 
00254 /**
00255  * This defines an opaque input resource handler.
00256  */
00257 typedef struct input_resource_t input_resource_t;
00258 
00259 /**
00260  * Main structure representing an input thread. This structure is mostly
00261  * private. The only public fields are READ-ONLY. You must use the helpers
00262  * to modify them
00263  */
00264 struct input_thread_t
00265 {
00266     VLC_COMMON_MEMBERS
00267 
00268     bool b_error;
00269     bool b_eof;
00270     bool b_preparsing;
00271     bool b_dead;
00272 
00273     /* All other data is input_thread is PRIVATE. You can't access it
00274      * outside of src/input */
00275     input_thread_private_t *p;
00276 };
00277 
00278 /**
00279  * Record prefix string.
00280  * TODO make it configurable.
00281  */
00282 #define INPUT_RECORD_PREFIX "vlc-record-%Y-%m-%d-%Hh%Mm%Ss-$ N-$ p"
00283 
00284 /*****************************************************************************
00285  * Input events and variables
00286  *****************************************************************************/
00287 
00288 /**
00289  * \defgroup inputvariable Input variables
00290  *
00291  * The input provides multiples variable you can write to and/or read from.
00292  *
00293  * TODO complete the documentation.
00294  * The read only variables are:
00295  *  - "length"
00296  *  - "can-seek" (if you can seek, it doesn't say if 'bar display' has be shown
00297  *    or not, for that check position != 0.0)
00298  *  - "can-pause"
00299  *  - "can-rate"
00300  *  - "can-rewind"
00301  *  - "can-record" (if a stream can be recorded while playing)
00302  *  - "teletext-es" (list of id from the spu tracks (spu-es) that are teletext, the
00303  *                   variable value being the one currently selected, -1 if no teletext)
00304  *  - "signal-quality"
00305  *  - "signal-strength"
00306  *  - "program-scrambled" (if the current program is scrambled)
00307  *  - "cache" (level of data cached [0 .. 1])
00308  *
00309  * The read-write variables are:
00310  *  - state (\see input_state_e)
00311  *  - rate
00312  *  - position, position-offset
00313  *  - time, time-offset
00314  *  - title, next-title, prev-title
00315  *  - chapter, next-chapter, next-chapter-prev
00316  *  - program, audio-es, video-es, spu-es
00317  *  - audio-delay, spu-delay
00318  *  - bookmark (bookmark list)
00319  *  - record
00320  *  - frame-next
00321  *  - navigation (list of "title %2i")
00322  *  - "title %2i"
00323  *
00324  * The variable used for event is
00325  *  - intf-event (\see input_event_type_e)
00326  */
00327 
00328 /**
00329  * Input state
00330  *
00331  * This enum is used by the variable "state"
00332  */
00333 typedef enum input_state_e
00334 {
00335     INIT_S = 0,
00336     OPENING_S,
00337     PLAYING_S,
00338     PAUSE_S,
00339     END_S,
00340     ERROR_S,
00341 } input_state_e;
00342 
00343 /**
00344  * Input rate.
00345  *
00346  * It is an float used by the variable "rate" in the
00347  * range [INPUT_RATE_DEFAULT/INPUT_RATE_MAX, INPUT_RATE_DEFAULT/INPUT_RATE_MAX]
00348  * the default value being 1. It represents the ratio of playback speed to
00349  * nominal speed (bigger is faster).
00350  *
00351  * Internally, the rate is stored as a value in the range
00352  * [INPUT_RATE_MIN, INPUT_RATE_MAX].
00353  * internal rate = INPUT_RATE_DEFAULT / rate variable
00354  */
00355 
00356 /**
00357  * Default rate value
00358  */
00359 #define INPUT_RATE_DEFAULT  1000
00360 /**
00361  * Minimal rate value
00362  */
00363 #define INPUT_RATE_MIN        32            /* Up to 32/1 */
00364 /**
00365  * Maximal rate value
00366  */
00367 #define INPUT_RATE_MAX     32000            /* Up to 1/32 */
00368 
00369 /**
00370  * Input events
00371  *
00372  * You can catch input event by adding a callback on the variable "intf-event".
00373  * This variable is an integer that will hold a input_event_type_e value.
00374  */
00375 typedef enum input_event_type_e
00376 {
00377     /* "state" has changed */
00378     INPUT_EVENT_STATE,
00379     /* b_dead is true */
00380     INPUT_EVENT_DEAD,
00381     /* a *user* abort has been requested */
00382     INPUT_EVENT_ABORT,
00383 
00384     /* "rate" has changed */
00385     INPUT_EVENT_RATE,
00386 
00387     /* At least one of "position" or "time" */
00388     INPUT_EVENT_POSITION,
00389 
00390     /* "length" has changed */
00391     INPUT_EVENT_LENGTH,
00392 
00393     /* A title has been added or removed or selected.
00394      * It imply that chapter has changed (not chapter event is sent) */
00395     INPUT_EVENT_TITLE,
00396     /* A chapter has been added or removed or selected. */
00397     INPUT_EVENT_CHAPTER,
00398 
00399     /* A program ("program") has been added or removed or selected,
00400      * or "program-scrambled" has changed.*/
00401     INPUT_EVENT_PROGRAM,
00402     /* A ES has been added or removed or selected */
00403     INPUT_EVENT_ES,
00404     /* "teletext-es" has changed */
00405     INPUT_EVENT_TELETEXT,
00406 
00407     /* "record" has changed */
00408     INPUT_EVENT_RECORD,
00409 
00410     /* input_item_t media has changed */
00411     INPUT_EVENT_ITEM_META,
00412     /* input_item_t info has changed */
00413     INPUT_EVENT_ITEM_INFO,
00414     /* input_item_t name has changed */
00415     INPUT_EVENT_ITEM_NAME,
00416     /* input_item_t epg has changed */
00417     INPUT_EVENT_ITEM_EPG,
00418 
00419     /* Input statistics have been updated */
00420     INPUT_EVENT_STATISTICS,
00421     /* At least one of "signal-quality" or "signal-strength" has changed */
00422     INPUT_EVENT_SIGNAL,
00423 
00424     /* "audio-delay" has changed */
00425     INPUT_EVENT_AUDIO_DELAY,
00426     /* "spu-delay" has changed */
00427     INPUT_EVENT_SUBTITLE_DELAY,
00428 
00429     /* "bookmark" has changed */
00430     INPUT_EVENT_BOOKMARK,
00431 
00432     /* cache" has changed */
00433     INPUT_EVENT_CACHE,
00434 
00435     /* A audio_output_t object has been created/deleted by *the input* */
00436     INPUT_EVENT_AOUT,
00437     /* A vout_thread_t object has been created/deleted by *the input* */
00438     INPUT_EVENT_VOUT,
00439 
00440 } input_event_type_e;
00441 
00442 /**
00443  * Input queries
00444  */
00445 enum input_query_e
00446 {
00447     /* input variable "position" */
00448     INPUT_GET_POSITION,         /* arg1= double *       res=    */
00449     INPUT_SET_POSITION,         /* arg1= double         res=can fail    */
00450 
00451     /* input variable "length" */
00452     INPUT_GET_LENGTH,           /* arg1= int64_t *      res=can fail    */
00453 
00454     /* input variable "time" */
00455     INPUT_GET_TIME,             /* arg1= int64_t *      res=    */
00456     INPUT_SET_TIME,             /* arg1= int64_t        res=can fail    */
00457 
00458     /* input variable "rate" (nominal is INPUT_RATE_DEFAULT) */
00459     INPUT_GET_RATE,             /* arg1= int *          res=    */
00460     INPUT_SET_RATE,             /* arg1= int            res=can fail    */
00461 
00462     /* input variable "state" */
00463     INPUT_GET_STATE,            /* arg1= int *          res=    */
00464     INPUT_SET_STATE,            /* arg1= int            res=can fail    */
00465 
00466     /* input variable "audio-delay" and "sub-delay" */
00467     INPUT_GET_AUDIO_DELAY,      /* arg1 = int* res=can fail */
00468     INPUT_SET_AUDIO_DELAY,      /* arg1 = int  res=can fail */
00469     INPUT_GET_SPU_DELAY,        /* arg1 = int* res=can fail */
00470     INPUT_SET_SPU_DELAY,        /* arg1 = int  res=can fail */
00471 
00472     /* Meta datas */
00473     INPUT_ADD_INFO,   /* arg1= char* arg2= char* arg3=...     res=can fail */
00474     INPUT_REPLACE_INFOS,/* arg1= info_category_t *            res=cannot fail */
00475     INPUT_MERGE_INFOS,/* arg1= info_category_t *              res=cannot fail */
00476     INPUT_GET_INFO,   /* arg1= char* arg2= char* arg3= char** res=can fail */
00477     INPUT_DEL_INFO,   /* arg1= char* arg2= char*              res=can fail */
00478     INPUT_SET_NAME,   /* arg1= char* res=can fail    */
00479 
00480     /* Input properties */
00481     INPUT_GET_VIDEO_FPS,         /* arg1= double *        res=can fail */
00482 
00483     /* bookmarks */
00484     INPUT_GET_BOOKMARK,    /* arg1= seekpoint_t *               res=can fail */
00485     INPUT_GET_BOOKMARKS,   /* arg1= seekpoint_t *** arg2= int * res=can fail */
00486     INPUT_CLEAR_BOOKMARKS, /* res=can fail */
00487     INPUT_ADD_BOOKMARK,    /* arg1= seekpoint_t *  res=can fail   */
00488     INPUT_CHANGE_BOOKMARK, /* arg1= seekpoint_t * arg2= int * res=can fail   */
00489     INPUT_DEL_BOOKMARK,    /* arg1= seekpoint_t *  res=can fail   */
00490     INPUT_SET_BOOKMARK,    /* arg1= int  res=can fail    */
00491 
00492     /* titles */
00493     INPUT_GET_TITLE_INFO,     /* arg1=input_title_t** arg2= int * res=can fail */
00494 
00495     /* Attachments */
00496     INPUT_GET_ATTACHMENTS, /* arg1=input_attachment_t***, arg2=int*  res=can fail */
00497     INPUT_GET_ATTACHMENT,  /* arg1=input_attachment_t**, arg2=char*  res=can fail */
00498 
00499     /* On the fly input slave */
00500     INPUT_ADD_SLAVE,       /* arg1= const char * */
00501     INPUT_ADD_SUBTITLE,    /* arg1= const char *, arg2=bool b_check_extension */
00502 
00503     /* On the fly record while playing */
00504     INPUT_SET_RECORD_STATE, /* arg1=bool    res=can fail */
00505     INPUT_GET_RECORD_STATE, /* arg1=bool*   res=can fail */
00506 
00507     /* ES */
00508     INPUT_RESTART_ES,       /* arg1=int (-AUDIO/VIDEO/SPU_ES for the whole category) */
00509 
00510     /* Input ressources
00511      * XXX You must call vlc_object_release as soon as possible */
00512     INPUT_GET_AOUT,         /* arg1=audio_output_t **              res=can fail */
00513     INPUT_GET_VOUTS,        /* arg1=vout_thread_t ***, size_t *        res=can fail */
00514     INPUT_GET_ES_OBJECTS,   /* arg1=int id, vlc_object_t **dec, vout_thread_t **, audio_output_t ** */
00515 
00516     /* External clock managments */
00517     INPUT_GET_PCR_SYSTEM,   /* arg1=mtime_t *, arg2=mtime_t *       res=can fail */
00518     INPUT_MODIFY_PCR_SYSTEM,/* arg1=int absolute, arg2=mtime_t      res=can fail */
00519 };
00520 
00521 /** @}*/
00522 
00523 /*****************************************************************************
00524  * Prototypes
00525  *****************************************************************************/
00526 
00527 VLC_API input_thread_t * input_Create( vlc_object_t *p_parent, input_item_t *, const char *psz_log, input_resource_t * ) VLC_USED;
00528 #define input_Create(a,b,c,d) input_Create(VLC_OBJECT(a),b,c,d)
00529 
00530 VLC_API input_thread_t * input_CreateAndStart( vlc_object_t *p_parent, input_item_t *, const char *psz_log ) VLC_USED;
00531 #define input_CreateAndStart(a,b,c) input_CreateAndStart(VLC_OBJECT(a),b,c)
00532 
00533 VLC_API int input_Start( input_thread_t * );
00534 
00535 VLC_API void input_Stop( input_thread_t *, bool b_abort );
00536 
00537 VLC_API int input_Read( vlc_object_t *, input_item_t * );
00538 #define input_Read(a,b) input_Read(VLC_OBJECT(a),b)
00539 
00540 VLC_API int input_vaControl( input_thread_t *, int i_query, va_list  );
00541 
00542 VLC_API int input_Control( input_thread_t *, int i_query, ...  );
00543 
00544 VLC_API void input_Close( input_thread_t * );
00545 void input_Join( input_thread_t * );
00546 void input_Release( input_thread_t * );
00547 
00548 /**
00549  * Get the input item for an input thread
00550  *
00551  * You have to keep a reference to the input or to the input_item_t until
00552  * you do not need it anymore.
00553  */
00554 VLC_API input_item_t* input_GetItem( input_thread_t * ) VLC_USED;
00555 
00556 /**
00557  * It will return the current state of the input.
00558  * Provided for convenience.
00559  */
00560 static inline input_state_e input_GetState( input_thread_t * p_input )
00561 {
00562     input_state_e state = INIT_S;
00563     input_Control( p_input, INPUT_GET_STATE, &state );
00564     return state;
00565 }
00566 /**
00567  * It will add a new subtitle source to the input.
00568  * Provided for convenience.
00569  */
00570 static inline int input_AddSubtitle( input_thread_t *p_input, const char *psz_url, bool b_check_extension )
00571 {
00572     return input_Control( p_input, INPUT_ADD_SUBTITLE, psz_url, b_check_extension );
00573 }
00574 
00575 /**
00576  * Return one of the video output (if any). If possible, you should use
00577  * INPUT_GET_VOUTS directly and process _all_ video outputs instead.
00578  * @param p_input an input thread from which to get a video output
00579  * @return NULL on error, or a video output thread pointer (which needs to be
00580  * released with vlc_object_release()).
00581  */
00582 static inline vout_thread_t *input_GetVout( input_thread_t *p_input )
00583 {
00584      vout_thread_t **pp_vout, *p_vout;
00585      size_t i_vout;
00586 
00587      if( input_Control( p_input, INPUT_GET_VOUTS, &pp_vout, &i_vout ) )
00588          return NULL;
00589 
00590      for( size_t i = 1; i < i_vout; i++ )
00591          vlc_object_release( (vlc_object_t *)(pp_vout[i]) );
00592 
00593      p_vout = (i_vout >= 1) ? pp_vout[0] : NULL;
00594      free( pp_vout );
00595      return p_vout;
00596 }
00597 
00598 /**
00599  * Return the audio output (if any) associated with an input.
00600  * @param p_input an input thread
00601  * @return NULL on error, or the audio output (which needs to be
00602  * released with vlc_object_release()).
00603  */
00604 static inline audio_output_t *input_GetAout( input_thread_t *p_input )
00605 {
00606      audio_output_t *p_aout;
00607      return input_Control( p_input, INPUT_GET_AOUT, &p_aout ) ? NULL : p_aout;
00608 }
00609 
00610 /**
00611  * Returns the objects associated to an ES.
00612  *
00613  * You must release all non NULL object using vlc_object_release.
00614  * You may set pointer of pointer to NULL to avoid retreiving it.
00615  */
00616 static inline int input_GetEsObjects( input_thread_t *p_input, int i_id,
00617                                       vlc_object_t **pp_decoder,
00618                                       vout_thread_t **pp_vout, audio_output_t **pp_aout )
00619 {
00620     return input_Control( p_input, INPUT_GET_ES_OBJECTS, i_id,
00621                           pp_decoder, pp_vout, pp_aout );
00622 }
00623 
00624 /**
00625  * \see input_clock_GetSystemOrigin
00626  */
00627 static inline int input_GetPcrSystem( input_thread_t *p_input, mtime_t *pi_system, mtime_t *pi_delay )
00628 {
00629     return input_Control( p_input, INPUT_GET_PCR_SYSTEM, pi_system, pi_delay );
00630 }
00631 /**
00632  * \see input_clock_ChangeSystemOrigin
00633  */
00634 static inline int input_ModifyPcrSystem( input_thread_t *p_input, bool b_absolute, mtime_t i_system )
00635 {
00636     return input_Control( p_input, INPUT_MODIFY_PCR_SYSTEM, b_absolute, i_system );
00637 }
00638 
00639 /* */
00640 VLC_API decoder_t * input_DecoderCreate( vlc_object_t *, es_format_t *, input_resource_t * ) VLC_USED;
00641 VLC_API void input_DecoderDelete( decoder_t * );
00642 VLC_API void input_DecoderDecode( decoder_t *, block_t *, bool b_do_pace );
00643 
00644 /**
00645  * This function creates a sane filename path.
00646  */
00647 VLC_API char * input_CreateFilename( vlc_object_t *, const char *psz_path, const char *psz_prefix, const char *psz_extension ) VLC_USED;
00648 
00649 /**
00650  * It creates an empty input resource handler.
00651  *
00652  * The given object MUST stay alive as long as the input_resource_t is
00653  * not deleted.
00654  */
00655 VLC_API input_resource_t * input_resource_New( vlc_object_t * ) VLC_USED;
00656 
00657 /**
00658  * It releases an input resource.
00659  */
00660 VLC_API void input_resource_Release( input_resource_t * );
00661 
00662 /**
00663  * Forcefully destroys the video output (e.g. when the playlist is stopped).
00664  */
00665 VLC_API void input_resource_TerminateVout( input_resource_t * );
00666 
00667 /**
00668  * This function releases all resources (object).
00669  */
00670 VLC_API void input_resource_Terminate( input_resource_t * );
00671 
00672 #endif
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines