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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_demux.h: Demuxer descriptor, queries and methods
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2005 the VideoLAN team
  5.  * $Id: 31ab55580669fe043458a597f700132dfecc2007 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifndef VLC_DEMUX_H
  24. #define VLC_DEMUX_H 1
  25. /**
  26.  * file
  27.  * This files defines functions and structures used by demux objects in vlc
  28.  */
  29. #include <vlc_es.h>
  30. #include <vlc_stream.h>
  31. #include <vlc_es_out.h>
  32. /**
  33.  * defgroup demux Demux
  34.  * @{
  35.  */
  36. struct demux_t
  37. {
  38.     VLC_COMMON_MEMBERS
  39.     /* Module properties */
  40.     module_t    *p_module;
  41.     /* eg informative but needed (we can have access+demux) */
  42.     char        *psz_access;
  43.     char        *psz_demux;
  44.     char        *psz_path;
  45.     /* input stream */
  46.     stream_t    *s;     /* NULL in case of a access+demux in one */
  47.     /* es output */
  48.     es_out_t    *out;   /* our p_es_out */
  49.     /* set by demuxer */
  50.     int (*pf_demux)  ( demux_t * );   /* demux one frame only */
  51.     int (*pf_control)( demux_t *, int i_query, va_list args);
  52.     /* Demux has to maintain them uptodate
  53.      * when it is responsible of seekpoint/title */
  54.     struct
  55.     {
  56.         unsigned int i_update;  /* Demux sets them on change,
  57.                                    Input removes them once take into account*/
  58.         /* Seekpoint/Title at demux level */
  59.         int          i_title;       /* idem, start from 0 (could be menu) */
  60.         int          i_seekpoint;   /* idem, start from 0 */
  61.     } info;
  62.     demux_sys_t *p_sys;
  63. };
  64. /* demux_meta_t is returned by "meta reader" module to the demuxer */
  65. struct demux_meta_t
  66. {
  67.     vlc_meta_t *p_meta;                 /**< meta data */
  68.     int i_attachments;                  /**< number of attachments */
  69.     input_attachment_t **attachments;    /**< array of attachments */
  70. };
  71. enum demux_query_e
  72. {
  73.     /* I. Common queries to access_demux and demux */
  74.     /* POSITION double between 0.0 and 1.0 */
  75.     DEMUX_GET_POSITION,         /* arg1= double *       res=    */
  76.     DEMUX_SET_POSITION,         /* arg1= double arg2= bool b_precise    res=can fail    */
  77.     /* LENGTH/TIME in microsecond, 0 if unknown */
  78.     DEMUX_GET_LENGTH,           /* arg1= int64_t *      res=    */
  79.     DEMUX_GET_TIME,             /* arg1= int64_t *      res=    */
  80.     DEMUX_SET_TIME,             /* arg1= int64_t arg2= bool b_precise   res=can fail    */
  81.     /* TITLE_INFO only if more than 1 title or 1 chapter */
  82.     DEMUX_GET_TITLE_INFO,       /* arg1=input_title_t*** arg2=int*
  83.                                    arg3=int*pi_title_offset(0), arg4=int*pi_seekpoint_offset(0) can fail */
  84.     /* TITLE/SEEKPOINT, only when TITLE_INFO succeed */
  85.     DEMUX_SET_TITLE,            /* arg1= int            can fail */
  86.     DEMUX_SET_SEEKPOINT,        /* arg1= int            can fail */
  87.     /* DEMUX_SET_GROUP only a hit for demuxer (mainly DVB) to allow not
  88.      * reading everything (you should not use this to call es_out_Control)
  89.      * if you don't know what to do with it, just IGNORE it, it is safe(r)
  90.      * -1 means all group, 0 default group (first es added) */
  91.     DEMUX_SET_GROUP,            /* arg1= int, arg2=const vlc_list_t *   can fail */
  92.     /* Ask the demux to demux until the given date at the next pf_demux call
  93.      * but not more (and not less, at the precision available of course).
  94.      * XXX: not mandatory (except for subtitle demux) but I will help a lot
  95.      * for multi-input
  96.      */
  97.     DEMUX_SET_NEXT_DEMUX_TIME,  /* arg1= int64_t *      can fail */
  98.     /* FPS for correct subtitles handling */
  99.     DEMUX_GET_FPS,              /* arg1= double *       res=can fail    */
  100.     /* Meta data */
  101.     DEMUX_GET_META,             /* arg1= vlc_meta_t **  res=can fail    */
  102.     DEMUX_HAS_UNSUPPORTED_META, /* arg1= bool *   res can fail    */
  103.     /* Attachments */
  104.     DEMUX_GET_ATTACHMENTS,      /* arg1=input_attachment_t***, int* res=can fail */
  105.     /* RECORD you should accept it only if the stream can be recorded without
  106.      * any modification or header addition. */
  107.     DEMUX_CAN_RECORD,           /* arg1=bool*   res=can fail(assume false) */
  108.     DEMUX_SET_RECORD_STATE,     /* arg1=bool    res=can fail */
  109.     /* II. Specific access_demux queries */
  110.     DEMUX_CAN_PAUSE = 0x1000,   /* arg1= bool*    can fail (assume false)*/
  111.     DEMUX_SET_PAUSE_STATE,      /* arg1= bool     can fail */
  112.     DEMUX_GET_PTS_DELAY,        /* arg1= int64_t*       cannot fail */
  113.     /* DEMUX_CAN_CONTROL_PACE returns true (*pb_pace) if we can read the
  114.      * data at our pace */
  115.     DEMUX_CAN_CONTROL_PACE,     /* arg1= bool*pb_pace    can fail (assume false) */
  116.     /* DEMUX_CAN_CONTROL_RATE is called only if DEMUX_CAN_CONTROL_PACE has returned false.
  117.      * *pb_rate should be true when the rate can be changed (using DEMUX_SET_RATE)
  118.      * *pb_ts_rescale should be true when the timestamps (pts/dts/pcr) have to be rescaled */
  119.     DEMUX_CAN_CONTROL_RATE,     /* arg1= bool*pb_rate arg2= bool*pb_ts_rescale  can fail(assume false) */
  120.     /* DEMUX_SET_RATE is called only if DEMUX_CAN_CONTROL_RATE has returned true.
  121.      * It should return the value really used in *pi_rate */
  122.     DEMUX_SET_RATE,             /* arg1= int*pi_rate                                        can fail */
  123.     DEMUX_CAN_SEEK,            /* arg1= bool*    can fail (assume false)*/
  124. };
  125. VLC_EXPORT( int,       demux_vaControlHelper, ( stream_t *, int64_t i_start, int64_t i_end, int64_t i_bitrate, int i_align, int i_query, va_list args ) );
  126. /*************************************************************************
  127.  * Miscellaneous helpers for demuxers
  128.  *************************************************************************/
  129. LIBVLC_USED
  130. static inline bool demux_IsPathExtension( demux_t *p_demux, const char *psz_extension )
  131. {
  132.     const char *psz_ext = strrchr ( p_demux->psz_path, '.' );
  133.     if( !psz_ext || strcasecmp( psz_ext, psz_extension ) )
  134.         return false;
  135.     return true;
  136. }
  137. LIBVLC_USED
  138. static inline bool demux_IsForced( demux_t *p_demux, const char *psz_name )
  139. {
  140.    if( !p_demux->psz_demux || strcmp( p_demux->psz_demux, psz_name ) )
  141.         return false;
  142.     return true;
  143. }
  144. /**
  145.  * This function will create a packetizer suitable for a demuxer that parses
  146.  * elementary stream.
  147.  *
  148.  * The provided es_format_t will be cleaned on error or by
  149.  * demux_PacketizerDestroy.
  150.  */
  151. VLC_EXPORT( decoder_t *,demux_PacketizerNew, ( demux_t *p_demux, es_format_t *p_fmt, const char *psz_msg ) );
  152. /**
  153.  * This function will destroy a packetizer create by demux_PacketizerNew.
  154.  */
  155. VLC_EXPORT( void, demux_PacketizerDestroy, ( decoder_t *p_packetizer ) );
  156. /* */
  157. #define DEMUX_INIT_COMMON() do {            
  158.     p_demux->pf_control = Control;          
  159.     p_demux->pf_demux = Demux;              
  160.     p_demux->p_sys = malloc( sizeof( demux_sys_t ) ); 
  161.     if( !p_demux->p_sys ) return VLC_ENOMEM;
  162.     memset( p_demux->p_sys, 0, sizeof( demux_sys_t ) ); } while(0)
  163. /**
  164.  * @}
  165.  */
  166. #endif