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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlc_es_out.h
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2004 VideoLAN
  5.  * $Id: vlc_es_out.h 9079 2004-10-29 10:59:19Z gbazin $
  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_ES_OUT_H
  24. #define _VLC_ES_OUT_H 1
  25. /**
  26.  * defgroup es out Es Out
  27.  * @{
  28.  */
  29. enum es_out_mode_e
  30. {
  31.     ES_OUT_MODE_NONE,   /* don't select anything */
  32.     ES_OUT_MODE_ALL,    /* eg for stream output */
  33.     ES_OUT_MODE_AUTO,   /* best audio/video or for input follow audio-channel, spu-channel */
  34.     ES_OUT_MODE_PARTIAL /* select programs given after --programs */
  35. };
  36. enum es_out_query_e
  37. {
  38.     /* activate apply of mode */
  39.     ES_OUT_SET_ACTIVE,  /* arg1= vlc_bool_t                     */
  40.     /* see if mode is currently aplied or not */
  41.     ES_OUT_GET_ACTIVE,  /* arg1= vlc_bool_t*                    */
  42.     /* set/get mode */
  43.     ES_OUT_SET_MODE,    /* arg1= int                            */
  44.     ES_OUT_GET_MODE,    /* arg2= int*                           */
  45.     /* set es selected for the es category(audio/video/spu) */
  46.     ES_OUT_SET_ES,      /* arg1= es_out_id_t*                   */
  47.     /* force selection/unselection of the ES (bypass current mode)*/
  48.     ES_OUT_SET_ES_STATE,/* arg1= es_out_id_t* arg2=vlc_bool_t   */
  49.     ES_OUT_GET_ES_STATE,/* arg1= es_out_id_t* arg2=vlc_bool_t*  */
  50.     /* */
  51.     ES_OUT_SET_GROUP,   /* arg1= int                            */
  52.     ES_OUT_GET_GROUP,   /* arg1= int*                           */
  53.     /* PCR handling, dts/pts will be automatically computed using thoses PCR */
  54.     ES_OUT_SET_PCR,             /* arg1=int64_t i_pcr(microsecond!) (using default group 0)*/
  55.     ES_OUT_SET_GROUP_PCR,       /* arg1= int i_group, arg2=int64_t i_pcr(microsecond!)*/
  56.     ES_OUT_RESET_PCR,           /* no arg */
  57.     /* Timestamp handling, convert an input timestamp to a global clock one.
  58.      * (shouldn't have to be used by input plugins directly) */
  59.     ES_OUT_GET_TS,             /* arg1=int64_t i_ts(microsecond!) (using default group 0), arg2=int64_t* converted i_ts */
  60.     /* Try not to use this one as it is a bit hacky */
  61.     ES_OUT_SET_FMT      /* arg1= es_out_id_t* arg2=es_format_t* */
  62. };
  63. struct es_out_t
  64. {
  65.     es_out_id_t *(*pf_add)    ( es_out_t *, es_format_t * );
  66.     int          (*pf_send)   ( es_out_t *, es_out_id_t *, block_t * );
  67.     void         (*pf_del)    ( es_out_t *, es_out_id_t * );
  68.     int          (*pf_control)( es_out_t *, int i_query, va_list );
  69.     es_out_sys_t    *p_sys;
  70. };
  71. static inline es_out_id_t * es_out_Add( es_out_t *out, es_format_t *fmt )
  72. {
  73.     return out->pf_add( out, fmt );
  74. }
  75. static inline void es_out_Del( es_out_t *out, es_out_id_t *id )
  76. {
  77.     out->pf_del( out, id );
  78. }
  79. static inline int es_out_Send( es_out_t *out, es_out_id_t *id,
  80.                                block_t *p_block )
  81. {
  82.     return out->pf_send( out, id, p_block );
  83. }
  84. static inline int es_out_vaControl( es_out_t *out, int i_query, va_list args )
  85. {
  86.     return out->pf_control( out, i_query, args );
  87. }
  88. static inline int es_out_Control( es_out_t *out, int i_query, ... )
  89. {
  90.     va_list args;
  91.     int     i_result;
  92.     va_start( args, i_query );
  93.     i_result = es_out_vaControl( out, i_query, args );
  94.     va_end( args );
  95.     return i_result;
  96. }
  97. /**
  98.  * @}
  99.  */
  100. #endif