vlc_input.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:20k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_input.h: Core input structures
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2006 the VideoLAN team
  5.  * $Id: 06f6fc2bf33010d1c238bf601cb5171e897766f5 $
  6.  *
  7.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  8.  *          Laurent Aimar <fenrir@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  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 General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. /* __ is need because conflict with <vlc/input.h> */
  25. #ifndef VLC__INPUT_H
  26. #define VLC__INPUT_H 1
  27. /**
  28.  * file
  29.  * This file defines functions, structures and enums for input objects in vlc
  30.  */
  31. #include <vlc_es.h>
  32. #include <vlc_meta.h>
  33. #include <vlc_epg.h>
  34. #include <vlc_events.h>
  35. #include <vlc_input_item.h>
  36. #include <string.h>
  37. /*****************************************************************************
  38.  * Meta data helpers
  39.  *****************************************************************************/
  40. static inline void vlc_audio_replay_gain_MergeFromMeta( audio_replay_gain_t *p_dst,
  41.                                                         const vlc_meta_t *p_meta )
  42. {
  43.     char * psz_value;
  44.     if( !p_meta )
  45.         return;
  46.     if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_TRACK_GAIN" )) ||
  47.         (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_RADIO" )) )
  48.     {
  49.         p_dst->pb_gain[AUDIO_REPLAY_GAIN_TRACK] = true;
  50.         p_dst->pf_gain[AUDIO_REPLAY_GAIN_TRACK] = atof( psz_value );
  51.     }
  52.     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_TRACK_PEAK" )) ||
  53.              (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_PEAK" )) )
  54.     {
  55.         p_dst->pb_peak[AUDIO_REPLAY_GAIN_TRACK] = true;
  56.         p_dst->pf_peak[AUDIO_REPLAY_GAIN_TRACK] = atof( psz_value );
  57.     }
  58.     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_ALBUM_GAIN" )) ||
  59.              (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "RG_AUDIOPHILE" )) )
  60.     {
  61.         p_dst->pb_gain[AUDIO_REPLAY_GAIN_ALBUM] = true;
  62.         p_dst->pf_gain[AUDIO_REPLAY_GAIN_ALBUM] = atof( psz_value );
  63.     }
  64.     else if( (psz_value = (char *)vlc_dictionary_value_for_key( &p_meta->extra_tags, "REPLAYGAIN_ALBUM_PEAK" )) )
  65.     {
  66.         p_dst->pb_peak[AUDIO_REPLAY_GAIN_ALBUM] = true;
  67.         p_dst->pf_peak[AUDIO_REPLAY_GAIN_ALBUM] = atof( psz_value );
  68.     }
  69. }
  70. /*****************************************************************************
  71.  * Seek point: (generalisation of chapters)
  72.  *****************************************************************************/
  73. struct seekpoint_t
  74. {
  75.     int64_t i_byte_offset;
  76.     int64_t i_time_offset;
  77.     char    *psz_name;
  78.     int     i_level;
  79. };
  80. static inline seekpoint_t *vlc_seekpoint_New( void )
  81. {
  82.     seekpoint_t *point = (seekpoint_t*)malloc( sizeof( seekpoint_t ) );
  83.     point->i_byte_offset =
  84.     point->i_time_offset = -1;
  85.     point->i_level = 0;
  86.     point->psz_name = NULL;
  87.     return point;
  88. }
  89. static inline void vlc_seekpoint_Delete( seekpoint_t *point )
  90. {
  91.     if( !point ) return;
  92.     free( point->psz_name );
  93.     free( point );
  94. }
  95. static inline seekpoint_t *vlc_seekpoint_Duplicate( seekpoint_t *src )
  96. {
  97.     seekpoint_t *point = vlc_seekpoint_New();
  98.     if( src->psz_name ) point->psz_name = strdup( src->psz_name );
  99.     point->i_time_offset = src->i_time_offset;
  100.     point->i_byte_offset = src->i_byte_offset;
  101.     return point;
  102. }
  103. /*****************************************************************************
  104.  * Title:
  105.  *****************************************************************************/
  106. typedef struct
  107. {
  108.     char        *psz_name;
  109.     bool        b_menu;      /* Is it a menu or a normal entry */
  110.     int64_t     i_length;   /* Length(microsecond) if known, else 0 */
  111.     int64_t     i_size;     /* Size (bytes) if known, else 0 */
  112.     /* Title seekpoint */
  113.     int         i_seekpoint;
  114.     seekpoint_t **seekpoint;
  115. } input_title_t;
  116. static inline input_title_t *vlc_input_title_New(void)
  117. {
  118.     input_title_t *t = (input_title_t*)malloc( sizeof( input_title_t ) );
  119.     t->psz_name = NULL;
  120.     t->b_menu = false;
  121.     t->i_length = 0;
  122.     t->i_size   = 0;
  123.     t->i_seekpoint = 0;
  124.     t->seekpoint = NULL;
  125.     return t;
  126. }
  127. static inline void vlc_input_title_Delete( input_title_t *t )
  128. {
  129.     int i;
  130.     if( t == NULL )
  131.         return;
  132.     free( t->psz_name );
  133.     for( i = 0; i < t->i_seekpoint; i++ )
  134.     {
  135.         free( t->seekpoint[i]->psz_name );
  136.         free( t->seekpoint[i] );
  137.     }
  138.     free( t->seekpoint );
  139.     free( t );
  140. }
  141. static inline input_title_t *vlc_input_title_Duplicate( input_title_t *t )
  142. {
  143.     input_title_t *dup = vlc_input_title_New( );
  144.     int i;
  145.     if( t->psz_name ) dup->psz_name = strdup( t->psz_name );
  146.     dup->b_menu      = t->b_menu;
  147.     dup->i_length    = t->i_length;
  148.     dup->i_size      = t->i_size;
  149.     dup->i_seekpoint = t->i_seekpoint;
  150.     if( t->i_seekpoint > 0 )
  151.     {
  152.         dup->seekpoint = (seekpoint_t**)calloc( t->i_seekpoint,
  153.                                                 sizeof(seekpoint_t*) );
  154.         for( i = 0; i < t->i_seekpoint; i++ )
  155.         {
  156.             dup->seekpoint[i] = vlc_seekpoint_Duplicate( t->seekpoint[i] );
  157.         }
  158.     }
  159.     return dup;
  160. }
  161. /*****************************************************************************
  162.  * Attachments
  163.  *****************************************************************************/
  164. struct input_attachment_t
  165. {
  166.     char *psz_name;
  167.     char *psz_mime;
  168.     char *psz_description;
  169.     int  i_data;
  170.     void *p_data;
  171. };
  172. static inline input_attachment_t *vlc_input_attachment_New( const char *psz_name,
  173.                                                             const char *psz_mime,
  174.                                                             const char *psz_description,
  175.                                                             const void *p_data,
  176.                                                             int i_data )
  177. {
  178.     input_attachment_t *a =
  179.         (input_attachment_t*)malloc( sizeof(input_attachment_t) );
  180.     if( !a )
  181.         return NULL;
  182.     a->psz_name = strdup( psz_name ? psz_name : "" );
  183.     a->psz_mime = strdup( psz_mime ? psz_mime : "" );
  184.     a->psz_description = strdup( psz_description ? psz_description : "" );
  185.     a->i_data = i_data;
  186.     a->p_data = NULL;
  187.     if( i_data > 0 )
  188.     {
  189.         a->p_data = malloc( i_data );
  190.         if( a->p_data && p_data )
  191.             memcpy( a->p_data, p_data, i_data );
  192.     }
  193.     return a;
  194. }
  195. static inline input_attachment_t *vlc_input_attachment_Duplicate( const input_attachment_t *a )
  196. {
  197.     return vlc_input_attachment_New( a->psz_name, a->psz_mime, a->psz_description,
  198.                                      a->p_data, a->i_data );
  199. }
  200. static inline void vlc_input_attachment_Delete( input_attachment_t *a )
  201. {
  202.     if( !a )
  203.         return;
  204.     free( a->psz_name );
  205.     free( a->psz_mime );
  206.     free( a->psz_description );
  207.     free( a->p_data );
  208.     free( a );
  209. }
  210. /*****************************************************************************
  211.  * input defines/constants.
  212.  *****************************************************************************/
  213. /* i_update field of access_t/demux_t */
  214. #define INPUT_UPDATE_NONE       0x0000
  215. #define INPUT_UPDATE_SIZE       0x0001
  216. #define INPUT_UPDATE_TITLE      0x0010
  217. #define INPUT_UPDATE_SEEKPOINT  0x0020
  218. #define INPUT_UPDATE_META       0x0040
  219. #define INPUT_UPDATE_SIGNAL     0x0080
  220. /**
  221.  * This defines private core storage for an input.
  222.  */
  223. typedef struct input_thread_private_t input_thread_private_t;
  224. /**
  225.  * This defines an opaque input resource handler.
  226.  */
  227. typedef struct input_resource_t input_resource_t;
  228. /**
  229.  * Main structure representing an input thread. This structure is mostly
  230.  * private. The only public fields are READ-ONLY. You must use the helpers
  231.  * to modify them
  232.  */
  233. struct input_thread_t
  234. {
  235.     VLC_COMMON_MEMBERS;
  236.     bool b_eof;
  237.     bool b_preparsing;
  238.     bool b_dead;
  239.     /* All other data is input_thread is PRIVATE. You can't access it
  240.      * outside of src/input */
  241.     input_thread_private_t *p;
  242. };
  243. /**
  244.  * Record prefix string.
  245.  * TODO make it configurable.
  246.  */
  247. #define INPUT_RECORD_PREFIX "vlc-record-%Y-%m-%d-%Hh%Mm%Ss-$ N-$ p"
  248. /*****************************************************************************
  249.  * Input events and variables
  250.  *****************************************************************************/
  251. /**
  252.  * defgroup inputvariable Input variables
  253.  *
  254.  * The input provides multiples variable you can write to and/or read from.
  255.  *
  256.  * TODO complete the documentation.
  257.  * The read only variables are:
  258.  *  - "length"
  259.  *  - "can-seek" (if you can seek, it doesn't say if 'bar display' has be shown
  260.  *    or not, for that check position != 0.0)
  261.  *  - "can-pause"
  262.  *  - "can-rate"
  263.  *  - "can-rewind"
  264.  *  - "can-record" (if a stream can be recorded while playing)
  265.  *  - "teletext-es" (list of id from the spu tracks (spu-es) that are teletext, the
  266.  *                   variable value being the one currently selected, -1 if no teletext)
  267.  *  - "signal-quality"
  268.  *  - "signal-strength"
  269.  *  - "program-scrambled" (if the current program is scrambled)
  270.  *  - "cache" (level of data cached [0 .. 1])
  271.  *
  272.  * The read-write variables are:
  273.  *  - state (see input_state_e)
  274.  *  - rate, rate-slower, rate-faster
  275.  *  - position, position-offset
  276.  *  - time, time-offset
  277.  *  - title, next-title, prev-title
  278.  *  - chapter, next-chapter, next-chapter-prev
  279.  *  - program, audio-es, video-es, spu-es
  280.  *  - audio-delay, spu-delay
  281.  *  - bookmark (bookmark list)
  282.  *  - record
  283.  *  - frame-next
  284.  *  - navigation (list of "title %2i")
  285.  *  - "title %2i"
  286.  *
  287.  * The variable used for event is
  288.  *  - intf-event (see input_event_type_e)
  289.  */
  290. /**
  291.  * Input state
  292.  *
  293.  * This enum is used by the variable "state"
  294.  */
  295. typedef enum input_state_e
  296. {
  297.     INIT_S = 0,
  298.     OPENING_S,
  299.     PLAYING_S,
  300.     PAUSE_S,
  301.     END_S,
  302.     ERROR_S,
  303. } input_state_e;
  304. /**
  305.  * Input rate.
  306.  *
  307.  * It is an integer used by the variable "rate" in the
  308.  * range [INPUT_RATE_MIN, INPUT_RATE_MAX] the default value
  309.  * being INPUT_RATE_DEFAULT.
  310.  *
  311.  * A value lower than INPUT_RATE_DEFAULT plays faster.
  312.  * A value higher than INPUT_RATE_DEFAULT plays slower.
  313.  */
  314. /**
  315.  * Default rate value
  316.  */
  317. #define INPUT_RATE_DEFAULT  1000
  318. /**
  319.  * Minimal rate value
  320.  */
  321. #define INPUT_RATE_MIN        32            /* Up to 32/1 */
  322. /**
  323.  * Maximal rate value
  324.  */
  325. #define INPUT_RATE_MAX     32000            /* Up to 1/32 */
  326. /**
  327.  * Input events
  328.  *
  329.  * You can catch input event by adding a callback on the variable "intf-event".
  330.  * This variable is an integer that will hold a input_event_type_e value.
  331.  */
  332. typedef enum input_event_type_e
  333. {
  334.     /* "state" has changed */
  335.     INPUT_EVENT_STATE,
  336.     /* b_dead is true */
  337.     INPUT_EVENT_DEAD,
  338.     /* a *user* abort has been requested */
  339.     INPUT_EVENT_ABORT,
  340.     /* "rate" has changed */
  341.     INPUT_EVENT_RATE,
  342.     /* At least one of "position" or "time" or "length" has changed */
  343.     INPUT_EVENT_TIMES,
  344.     /* A title has been added or removed or selected.
  345.      * It imply that chapter has changed (not chapter event is sent) */
  346.     INPUT_EVENT_TITLE,
  347.     /* A chapter has been added or removed or selected. */
  348.     INPUT_EVENT_CHAPTER,
  349.     /* A program ("program") has been added or removed or selected,
  350.      * or "program-scrambled" has changed.*/
  351.     INPUT_EVENT_PROGRAM,
  352.     /* A ES has been added or removed or selected */
  353.     INPUT_EVENT_ES,
  354.     /* "teletext-es" has changed */
  355.     INPUT_EVENT_TELETEXT,
  356.     /* "record" has changed */
  357.     INPUT_EVENT_RECORD,
  358.     /* input_item_t media has changed */
  359.     INPUT_EVENT_ITEM_META,
  360.     /* input_item_t info has changed */
  361.     INPUT_EVENT_ITEM_INFO,
  362.     /* input_item_t name has changed */
  363.     INPUT_EVENT_ITEM_NAME,
  364.     /* Input statistics have been updated */
  365.     INPUT_EVENT_STATISTICS,
  366.     /* At least one of "signal-quality" or "signal-strength" has changed */
  367.     INPUT_EVENT_SIGNAL,
  368.     /* "audio-delay" has changed */
  369.     INPUT_EVENT_AUDIO_DELAY,
  370.     /* "spu-delay" has changed */
  371.     INPUT_EVENT_SUBTITLE_DELAY,
  372.     /* "bookmark" has changed */
  373.     INPUT_EVENT_BOOKMARK,
  374.     /* cache" has changed */
  375.     INPUT_EVENT_CACHE,
  376.     /* A aout_instance_t object has been created/deleted by *the input* */
  377.     INPUT_EVENT_AOUT,
  378.     /* A vout_thread_t object has been created/deleted by *the input* */
  379.     INPUT_EVENT_VOUT,
  380. } input_event_type_e;
  381. /**
  382.  * Input queries
  383.  */
  384. enum input_query_e
  385. {
  386.     /* input variable "position" */
  387.     INPUT_GET_POSITION,         /* arg1= double *       res=    */
  388.     INPUT_SET_POSITION,         /* arg1= double         res=can fail    */
  389.     /* input variable "length" */
  390.     INPUT_GET_LENGTH,           /* arg1= int64_t *      res=can fail    */
  391.     /* input variable "time" */
  392.     INPUT_GET_TIME,             /* arg1= int64_t *      res=    */
  393.     INPUT_SET_TIME,             /* arg1= int64_t        res=can fail    */
  394.     /* input variable "rate" (1 is DEFAULT_RATE) */
  395.     INPUT_GET_RATE,             /* arg1= int *          res=    */
  396.     INPUT_SET_RATE,             /* arg1= int            res=can fail    */
  397.     /* input variable "state" */
  398.     INPUT_GET_STATE,            /* arg1= int *          res=    */
  399.     INPUT_SET_STATE,            /* arg1= int            res=can fail    */
  400.     /* input variable "audio-delay" and "sub-delay" */
  401.     INPUT_GET_AUDIO_DELAY,      /* arg1 = int* res=can fail */
  402.     INPUT_SET_AUDIO_DELAY,      /* arg1 = int  res=can fail */
  403.     INPUT_GET_SPU_DELAY,        /* arg1 = int* res=can fail */
  404.     INPUT_SET_SPU_DELAY,        /* arg1 = int  res=can fail */
  405.     /* Meta datas */
  406.     INPUT_ADD_INFO,   /* arg1= char* arg2= char* arg3=...     res=can fail */
  407.     INPUT_GET_INFO,   /* arg1= char* arg2= char* arg3= char** res=can fail */
  408.     INPUT_DEL_INFO,   /* arg1= char* arg2= char*              res=can fail */
  409.     INPUT_SET_NAME,   /* arg1= char* res=can fail    */
  410.     /* Input config options */
  411.     INPUT_ADD_OPTION,      /* arg1= char * arg2= char *  res=can fail*/
  412.     /* Input properties */
  413.     INPUT_GET_VIDEO_FPS,         /* arg1= double *        res=can fail */
  414.     /* bookmarks */
  415.     INPUT_GET_BOOKMARK,    /* arg1= seekpoint_t *               res=can fail */
  416.     INPUT_GET_BOOKMARKS,   /* arg1= seekpoint_t *** arg2= int * res=can fail */
  417.     INPUT_CLEAR_BOOKMARKS, /* res=can fail */
  418.     INPUT_ADD_BOOKMARK,    /* arg1= seekpoint_t *  res=can fail   */
  419.     INPUT_CHANGE_BOOKMARK, /* arg1= seekpoint_t * arg2= int * res=can fail   */
  420.     INPUT_DEL_BOOKMARK,    /* arg1= seekpoint_t *  res=can fail   */
  421.     INPUT_SET_BOOKMARK,    /* arg1= int  res=can fail    */
  422.     /* Attachments */
  423.     INPUT_GET_ATTACHMENTS, /* arg1=input_attachment_t***, arg2=int*  res=can fail */
  424.     INPUT_GET_ATTACHMENT,  /* arg1=input_attachment_t**, arg2=char*  res=can fail */
  425.     /* On the fly input slave */
  426.     INPUT_ADD_SLAVE,       /* arg1= const char * */
  427.     INPUT_ADD_SUBTITLE,    /* arg1= const char *, arg2=bool b_check_extension */
  428.     /* On the fly record while playing */
  429.     INPUT_SET_RECORD_STATE, /* arg1=bool    res=can fail */
  430.     INPUT_GET_RECORD_STATE, /* arg1=bool*   res=can fail */
  431.     /* ES */
  432.     INPUT_RESTART_ES,       /* arg1=int (-AUDIO/VIDEO/SPU_ES for the whole category) */
  433.     /* Input ressources
  434.      * XXX You must call vlc_object_release as soon as possible */
  435.     INPUT_GET_AOUT,         /* arg1=aout_instance_t **              res=can fail */
  436.     INPUT_GET_VOUTS,        /* arg1=vout_thread_t ***, int *        res=can fail */
  437. };
  438. /** @}*/
  439. /*****************************************************************************
  440.  * Prototypes
  441.  *****************************************************************************/
  442. #define input_Create(a,b,c,d) __input_Create(VLC_OBJECT(a),b,c,d)
  443. VLC_EXPORT( input_thread_t *, __input_Create, ( vlc_object_t *p_parent, input_item_t *, const char *psz_log, input_resource_t * ) );
  444. #define input_CreateAndStart(a,b,c) __input_CreateAndStart(VLC_OBJECT(a),b,c)
  445. VLC_EXPORT( input_thread_t *, __input_CreateAndStart, ( vlc_object_t *p_parent, input_item_t *, const char *psz_log ) );
  446. VLC_EXPORT( int,  input_Start, ( input_thread_t * ) );
  447. VLC_EXPORT( void, input_Stop, ( input_thread_t *, bool b_abort ) );
  448. #define input_Read(a,b,c) __input_Read(VLC_OBJECT(a),b, c)
  449. VLC_EXPORT( int, __input_Read, ( vlc_object_t *, input_item_t *, bool ) );
  450. VLC_EXPORT( int, input_vaControl,( input_thread_t *, int i_query, va_list  ) );
  451. VLC_EXPORT( int, input_Control,  ( input_thread_t *, int i_query, ...  ) );
  452. /**
  453.  * Get the input item for an input thread
  454.  *
  455.  * You have to keep a reference to the input or to the input_item_t until
  456.  * you do not need it anymore.
  457.  */
  458. VLC_EXPORT( input_item_t*, input_GetItem, ( input_thread_t * ) );
  459. /**
  460.  * It will return the current state of the input.
  461.  * Provided for convenience.
  462.  */
  463. static inline input_state_e input_GetState( input_thread_t * p_input )
  464. {
  465.     input_state_e state = INIT_S;
  466.     input_Control( p_input, INPUT_GET_STATE, &state );
  467.     return state;
  468. }
  469. /**
  470.  * It will add a new subtitle source to the input.
  471.  * Provided for convenience.
  472.  */
  473. static inline int input_AddSubtitle( input_thread_t *p_input, const char *psz_url, bool b_check_extension )
  474. {
  475.     return input_Control( p_input, INPUT_ADD_SUBTITLE, psz_url, b_check_extension );
  476. }
  477. /**
  478.  * Return one of the video output (if any). If possible, you should use
  479.  * INPUT_GET_VOUTS directly and process _all_ video outputs instead.
  480.  * @param p_input an input thread from which to get a video output
  481.  * @return NULL on error, or a video output thread pointer (which needs to be
  482.  * released with vlc_object_release()).
  483.  */
  484. static inline vout_thread_t *input_GetVout( input_thread_t *p_input )
  485. {
  486.      vout_thread_t **pp_vout, *p_vout;
  487.      unsigned i_vout;
  488.      if( input_Control( p_input, INPUT_GET_VOUTS, &pp_vout, &i_vout ) )
  489.          return NULL;
  490.      for( unsigned i = 1; i < i_vout; i++ )
  491.          vlc_object_release( (vlc_object_t *)(pp_vout[i]) );
  492.      p_vout = (i_vout >= 1) ? pp_vout[0] : NULL;
  493.      free( pp_vout );
  494.      return p_vout;
  495. }
  496. /**
  497.  * Return the audio output (if any) associated with an input.
  498.  * @param p_input an input thread
  499.  * @return NULL on error, or the audio output (which needs to be
  500.  * released with vlc_object_release()).
  501.  */
  502. static inline aout_instance_t *input_GetAout( input_thread_t *p_input )
  503. {
  504.      aout_instance_t *p_aout;
  505.      return input_Control( p_input, INPUT_GET_AOUT, &p_aout ) ? NULL : p_aout;
  506. }
  507. /* */
  508. typedef struct input_clock_t input_clock_t;
  509. VLC_EXPORT( decoder_t *, input_DecoderNew, ( input_thread_t *, es_format_t *, input_clock_t *, sout_instance_t * ) );
  510. VLC_EXPORT( void, input_DecoderDelete, ( decoder_t * ) );
  511. VLC_EXPORT( void, input_DecoderDecode,( decoder_t *, block_t *, bool b_do_pace ) );
  512. /**
  513.  * This function allows to split a MRL into access, demux and path part.
  514.  *
  515.  *  You should not write into access and demux string as they may not point into
  516.  * the provided buffer.
  517.  *  The buffer provided by psz_dup will be modified.
  518.  */
  519. VLC_EXPORT( void, input_SplitMRL, ( const char **ppsz_access, const char **ppsz_demux, char **ppsz_path, char *psz_dup ) );
  520. /**
  521.  * This function creates a sane filename path.
  522.  */
  523. VLC_EXPORT( char *, input_CreateFilename, ( vlc_object_t *, const char *psz_path, const char *psz_prefix, const char *psz_extension ) );
  524. #endif