vlc_demux.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:5k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlc_demux.h
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2004 VideoLAN
  5.  * $Id: vlc_demux.h 8520 2004-08-25 18:50:36Z fenrir $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef _VLC_DEMUX_H
  24. #define _VLC_DEMUX_H 1
  25. /**
  26.  * defgroup demux Demux
  27.  * @{
  28.  */
  29. struct demux_t
  30. {
  31.     VLC_COMMON_MEMBERS
  32.     /* Module properties */
  33.     module_t    *p_module;
  34.     /* eg informative but needed (we can have access+demux) */
  35.     char        *psz_access;
  36.     char        *psz_demux;
  37.     char        *psz_path;
  38.     /* input stream */
  39.     stream_t    *s;     /* NULL in case of a access+demux in one */
  40.     /* es output */
  41.     es_out_t    *out;   /* ou p_es_out */
  42.     /* set by demuxer */
  43.     int (*pf_demux)  ( demux_t * );   /* demux one frame only */
  44.     int (*pf_control)( demux_t *, int i_query, va_list args);
  45.     /* Demux has to maintain them uptodate
  46.      * when it is responsible of seekpoint/title */
  47.     struct
  48.     {
  49.         unsigned int i_update;  /* Demux sets them on change,
  50.                                    Input removes them once take into account*/
  51.         /* Seekpoint/Title at demux level */
  52.         int          i_title;       /* idem, start from 0 (could be menu) */
  53.         int          i_seekpoint;   /* idem, start from 0 */
  54.     } info;
  55.     demux_sys_t *p_sys;
  56. };
  57. enum demux_query_e
  58. {
  59.     /* I. Common queries to access_demux and demux */
  60.     /* POSITION double between 0.0 and 1.0 */
  61.     DEMUX_GET_POSITION,         /* arg1= double *       res=    */
  62.     DEMUX_SET_POSITION,         /* arg1= double         res=can fail    */
  63.     /* LENGTH/TIME in microsecond, 0 if unknown */
  64.     DEMUX_GET_LENGTH,           /* arg1= int64_t *      res=    */
  65.     DEMUX_GET_TIME,             /* arg1= int64_t *      res=    */
  66.     DEMUX_SET_TIME,             /* arg1= int64_t        res=can fail    */
  67.     /* TITLE_INFO only if more than 1 title or 1 chapter */
  68.     DEMUX_GET_TITLE_INFO,       /* arg1=input_title_t*** arg2=int* can fail */
  69.     /* TITLE/SEEKPOINT, only when TITLE_INFO succeed */
  70.     DEMUX_SET_TITLE,            /* arg1= int            can fail */
  71.     DEMUX_SET_SEEKPOINT,        /* arg1= int            can fail */
  72.     /* DEMUX_SET_GROUP only a hit for demuxer (mainly DVB) to allow not
  73.      * reading everything (you should not use this to call es_out_Control)
  74.      * if you don't know what to do with it, just IGNORE it, it is safe(r)
  75.      * -1 means all group, 0 default group (first es added) */
  76.     DEMUX_SET_GROUP,            /* arg1= int            can fail */
  77.     /* Ask the demux to demux until the given date at the next pf_demux call
  78.      * but not more (and not less, at the precision avaiable of course).
  79.      * XXX: not mandatory (except for subtitle demux) but I will help a lot
  80.      * for multi-input
  81.      */
  82.     DEMUX_SET_NEXT_DEMUX_TIME,  /* arg1= int64_t *      can fail */
  83.     /* FPS for correct subtitles handling */
  84.     DEMUX_GET_FPS,              /* arg1= float *        res=can fail    */
  85.     /* Meta data */
  86.     DEMUX_GET_META,             /* arg1= vlc_meta_t **  res=can fail    */
  87.     /* II. Specific access_demux queries */
  88.     DEMUX_CAN_PAUSE,            /* arg1= vlc_bool_t*    cannot fail */
  89.     DEMUX_CAN_CONTROL_PACE,     /* arg1= vlc_bool_t*    cannot fail */
  90.     DEMUX_GET_PTS_DELAY,        /* arg1= int64_t*       cannot fail */
  91.     DEMUX_SET_PAUSE_STATE, /* arg1= vlc_bool_t     can fail */
  92. };
  93. /* stream_t *s could be null and then it mean a access+demux in one */
  94. #define demux2_New( a, b, c, d, e, f ) __demux2_New(VLC_OBJECT(a),b,c,d,e,f)
  95. VLC_EXPORT( demux_t *, __demux2_New,  ( vlc_object_t *p_obj, char *psz_access, char *psz_demux, char *psz_path, stream_t *s, es_out_t *out ) );
  96. VLC_EXPORT( void,      demux2_Delete, ( demux_t * ) );
  97. VLC_EXPORT( int,       demux2_vaControlHelper, ( stream_t *, int64_t i_start, int64_t i_end, int i_bitrate, int i_align, int i_query, va_list args ) );
  98. static inline int demux2_Demux( demux_t *p_demux )
  99. {
  100.     return p_demux->pf_demux( p_demux );
  101. }
  102. static inline int demux2_vaControl( demux_t *p_demux, int i_query, va_list args )
  103. {
  104.     return p_demux->pf_control( p_demux, i_query, args );
  105. }
  106. static inline int demux2_Control( demux_t *p_demux, int i_query, ... )
  107. {
  108.     va_list args;
  109.     int     i_result;
  110.     va_start( args, i_query );
  111.     i_result = demux2_vaControl( p_demux, i_query, args );
  112.     va_end( args );
  113.     return i_result;
  114. }
  115. /**
  116.  * @}
  117.  */
  118. #endif