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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * es_out.h: Input es_out functions
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2008 the VideoLAN team
  5.  * Copyright (C) 2008 Laurent Aimar
  6.  * $Id: b9f0ce944a2900f0e6c9e1226d0e18a3e8ee5094 $
  7.  *
  8.  * Authors: 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. #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__)
  25. # error This header file can only be included from LibVLC.
  26. #endif
  27. #ifndef _INPUT_ES_OUT_H
  28. #define _INPUT_ES_OUT_H 1
  29. #include <vlc_common.h>
  30. enum es_out_query_private_e
  31. {
  32.     /* activate application of mode */
  33.     ES_OUT_SET_ACTIVE = ES_OUT_PRIVATE_START,       /* arg1= bool                     */
  34.     /* set/get mode */
  35.     ES_OUT_SET_MODE,                                /* arg1= int                            */
  36.     /* Get date to wait before demuxing more data */
  37.     ES_OUT_GET_WAKE_UP,                             /* arg1=mtime_t*            res=cannot fail */
  38.     /* Wrapper for some ES command to work with id */
  39.     ES_OUT_SET_ES_BY_ID,
  40.     ES_OUT_RESTART_ES_BY_ID,
  41.     ES_OUT_SET_ES_DEFAULT_BY_ID,
  42.     /* Get buffering state */
  43.     ES_OUT_GET_BUFFERING,                           /* arg1=bool*               res=cannot fail */
  44.     /* Set delay for a ES category */
  45.     ES_OUT_SET_DELAY,                               /* arg1=es_category_e,      res=can fail */
  46.     /* Set record state */
  47.     ES_OUT_SET_RECORD_STATE,                        /* arg1=bool                res=can fail */
  48.     /* Set pause state */
  49.     ES_OUT_SET_PAUSE_STATE,                         /* arg1=bool b_source_paused, bool b_paused arg2=mtime_t   res=can fail */
  50.     /* Set rate */
  51.     ES_OUT_SET_RATE,                                /* arg1=int i_source_rate arg2=int i_rate                  res=can fail */
  52.     /* Set a new time */
  53.     ES_OUT_SET_TIME,                                /* arg1=mtime_t             res=can fail */
  54.     /* Set next frame */
  55.     ES_OUT_SET_FRAME_NEXT,                          /*                          res=can fail */
  56.     /* Set position/time/length */
  57.     ES_OUT_SET_TIMES,                               /* arg1=double f_position arg2=mtime_t i_time arg3=mtime_t i_length res=cannot fail */
  58.     /* Set jitter */
  59.     ES_OUT_SET_JITTER,                              /* arg1=mtime_t i_pts_delay arg2=int i_cr_average res=cannot fail */
  60. };
  61. static inline mtime_t es_out_GetWakeup( es_out_t *p_out )
  62. {
  63.     mtime_t i_wu;
  64.     int i_ret = es_out_Control( p_out, ES_OUT_GET_WAKE_UP, &i_wu );
  65.     assert( !i_ret );
  66.     return i_wu;
  67. }
  68. static inline bool es_out_GetBuffering( es_out_t *p_out )
  69. {
  70.     bool b;
  71.     int i_ret = es_out_Control( p_out, ES_OUT_GET_BUFFERING, &b );
  72.     assert( !i_ret );
  73.     return b;
  74. }
  75. static inline bool es_out_GetEmpty( es_out_t *p_out )
  76. {
  77.     bool b;
  78.     int i_ret = es_out_Control( p_out, ES_OUT_GET_EMPTY, &b );
  79.     assert( !i_ret );
  80.     return b;
  81. }
  82. static inline int es_out_SetDelay( es_out_t *p_out, int i_cat, mtime_t i_delay )
  83. {
  84.     return es_out_Control( p_out, ES_OUT_SET_DELAY, i_cat, i_delay );
  85. }
  86. static inline int es_out_SetRecordState( es_out_t *p_out, bool b_record )
  87. {
  88.     return es_out_Control( p_out, ES_OUT_SET_RECORD_STATE, b_record );
  89. }
  90. static inline int es_out_SetPauseState( es_out_t *p_out, bool b_source_paused, bool b_paused, mtime_t i_date )
  91. {
  92.     return es_out_Control( p_out, ES_OUT_SET_PAUSE_STATE, b_source_paused, b_paused, i_date );
  93. }
  94. static inline int es_out_SetRate( es_out_t *p_out, int i_source_rate, int i_rate )
  95. {
  96.     return es_out_Control( p_out, ES_OUT_SET_RATE, i_source_rate, i_rate );
  97. }
  98. static inline int es_out_SetTime( es_out_t *p_out, mtime_t i_date )
  99. {
  100.     return es_out_Control( p_out, ES_OUT_SET_TIME, i_date );
  101. }
  102. static inline int es_out_SetFrameNext( es_out_t *p_out )
  103. {
  104.     return es_out_Control( p_out, ES_OUT_SET_FRAME_NEXT );
  105. }
  106. static inline void es_out_SetTimes( es_out_t *p_out, double f_position, mtime_t i_time, mtime_t i_length )
  107. {
  108.     int i_ret = es_out_Control( p_out, ES_OUT_SET_TIMES, f_position, i_time, i_length );
  109.     assert( !i_ret );
  110. }
  111. static inline void es_out_SetJitter( es_out_t *p_out, mtime_t i_pts_delay, int i_cr_average )
  112. {
  113.     int i_ret = es_out_Control( p_out, ES_OUT_SET_JITTER, i_pts_delay, i_cr_average );
  114.     assert( !i_ret );
  115. }
  116. es_out_t  *input_EsOutNew( input_thread_t *, int i_rate );
  117. #endif