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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_es_out.h: es_out (demuxer output) descriptor, queries and methods
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2004 the VideoLAN team
  5.  * $Id: fdde1c935f298af2d0ad27782438109e66ba0ca5 $
  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_ES_OUT_H
  24. #define VLC_ES_OUT_H 1
  25. /**
  26.  * file
  27.  * This file defines functions and structures for handling es_out in stream output
  28.  */
  29. /**
  30.  * defgroup es out Es Out
  31.  * @{
  32.  */
  33. enum es_out_mode_e
  34. {
  35.     ES_OUT_MODE_NONE,   /* don't select anything */
  36.     ES_OUT_MODE_ALL,    /* eg for stream output */
  37.     ES_OUT_MODE_AUTO,   /* best audio/video or for input follow audio-track, sub-track */
  38.     ES_OUT_MODE_PARTIAL /* select programs given after --programs */
  39. };
  40. enum es_out_query_e
  41. {
  42.     /* set ES selected for the es category (audio/video/spu) */
  43.     ES_OUT_SET_ES,      /* arg1= es_out_id_t*                   */
  44.     ES_OUT_RESTART_ES,  /* arg1= es_out_id_t*                   */
  45.     /* set 'default' tag on ES (copied across from container) */
  46.     ES_OUT_SET_ES_DEFAULT, /* 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=bool   */
  49.     ES_OUT_GET_ES_STATE,/* arg1= es_out_id_t* arg2=bool*  */
  50.     /* */
  51.     ES_OUT_SET_GROUP,   /* arg1= int                            */
  52.     /* PCR handling, DTS/PTS will be automatically computed using thoses PCR
  53.      * XXX: SET_PCR(_GROUP) are in charge of the pace control. They will wait
  54.      * to slow down the demuxer so that it reads at the right speed.
  55.      * XXX: if you want PREROLL just call ES_OUT_SET_NEXT_DISPLAY_TIME and send
  56.      * as you would normally do.
  57.      */
  58.     ES_OUT_SET_PCR,             /* arg1=int64_t i_pcr(microsecond!) (using default group 0)*/
  59.     ES_OUT_SET_GROUP_PCR,       /* arg1= int i_group, arg2=int64_t i_pcr(microsecond!)*/
  60.     ES_OUT_RESET_PCR,           /* no arg */
  61.     /* Try not to use this one as it is a bit hacky */
  62.     ES_OUT_SET_ES_FMT,         /* arg1= es_out_id_t* arg2=es_format_t* */
  63.     /* Allow preroll of data (data with dts/pts < i_pts for all ES will be decoded but not displayed */
  64.     ES_OUT_SET_NEXT_DISPLAY_TIME,       /* arg1=int64_t i_pts(microsecond) */
  65.     /* Set meta data for group (dynamic) */
  66.     ES_OUT_SET_GROUP_META,  /* arg1=int i_group arg2=vlc_meta_t */
  67.     /* Set epg for group (dynamic) */
  68.     ES_OUT_SET_GROUP_EPG,   /* arg1=int i_group arg2=vlc_epg_t */
  69.     /* */
  70.     ES_OUT_DEL_GROUP,       /* arg1=int i_group */
  71.     /* Set scrambled state for one es */
  72.     ES_OUT_SET_ES_SCRAMBLED_STATE,  /* arg1=int i_group arg2=es_out_id_t* */
  73.     /* Stop any buffering being done, and ask if es_out has no more data to
  74.      * play.
  75.      * It will not block and so MUST be used carrefully. The only good reason
  76.      * is for interactive playback (like for DVD menu).
  77.      * XXX You SHALL call ES_OUT_RESET_PCR before any other es_out_Control/Send calls. */
  78.     ES_OUT_GET_EMPTY,       /* arg1=bool*   res=cannot fail */
  79.     /* Set global meta data (The vlc_meta_t is not modified nor released) */
  80.     ES_OUT_SET_META, /* arg1=const vlc_meta_t * */
  81.     /* First value usable for private control */
  82.     ES_OUT_PRIVATE_START = 0x10000,
  83. };
  84. struct es_out_t
  85. {
  86.     es_out_id_t *(*pf_add)    ( es_out_t *, const es_format_t * );
  87.     int          (*pf_send)   ( es_out_t *, es_out_id_t *, block_t * );
  88.     void         (*pf_del)    ( es_out_t *, es_out_id_t * );
  89.     int          (*pf_control)( es_out_t *, int i_query, va_list );
  90.     void         (*pf_destroy)( es_out_t * );
  91.     bool         b_sout;
  92.     es_out_sys_t    *p_sys;
  93. };
  94. LIBVLC_USED
  95. static inline es_out_id_t * es_out_Add( es_out_t *out, const es_format_t *fmt )
  96. {
  97.     return out->pf_add( out, fmt );
  98. }
  99. static inline void es_out_Del( es_out_t *out, es_out_id_t *id )
  100. {
  101.     out->pf_del( out, id );
  102. }
  103. static inline int es_out_Send( es_out_t *out, es_out_id_t *id,
  104.                                block_t *p_block )
  105. {
  106.     return out->pf_send( out, id, p_block );
  107. }
  108. static inline int es_out_vaControl( es_out_t *out, int i_query, va_list args )
  109. {
  110.     return out->pf_control( out, i_query, args );
  111. }
  112. static inline int es_out_Control( es_out_t *out, int i_query, ... )
  113. {
  114.     va_list args;
  115.     int     i_result;
  116.     va_start( args, i_query );
  117.     i_result = es_out_vaControl( out, i_query, args );
  118.     va_end( args );
  119.     return i_result;
  120. }
  121. static inline void es_out_Delete( es_out_t *p_out )
  122. {
  123.     p_out->pf_destroy( p_out );
  124. }
  125. static inline int es_out_ControlSetMeta( es_out_t *out, const vlc_meta_t *p_meta )
  126. {
  127.     return es_out_Control( out, ES_OUT_SET_META, p_meta );
  128. }
  129. /**
  130.  * @}
  131.  */
  132. #endif