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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * decoder.h: Input decoder functions
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2008 the VideoLAN team
  5.  * Copyright (C) 2008 Laurent Aimar
  6.  * $Id: fe99b42e794eec0ccd8ecfdc51ad43b9959f97e2 $
  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_DECODER_H
  28. #define _INPUT_DECODER_H 1
  29. #include <vlc_common.h>
  30. #include <vlc_codec.h>
  31. #define BLOCK_FLAG_CORE_FLUSH (1 <<BLOCK_FLAG_CORE_PRIVATE_SHIFT)
  32. /**
  33.  * This function changes the pause state.
  34.  * The date parameter MUST hold the exact date at wich the change has been
  35.  * done for proper vout/aout pausing.
  36.  */
  37. void input_DecoderChangePause( decoder_t *, bool b_paused, mtime_t i_date );
  38. /**
  39.  * This function changes the delay.
  40.  */
  41. void input_DecoderChangeDelay( decoder_t *, mtime_t i_delay );
  42. /**
  43.  * This function starts the buffering mode.
  44.  */
  45. void input_DecoderStartBuffering( decoder_t * );
  46. /**
  47.  * This function waits for the decoder to have buffered sufficient data.
  48.  */
  49. void input_DecoderWaitBuffering( decoder_t * );
  50. /**
  51.  * This function stops the buffering mode.
  52.  */
  53. void input_DecoderStopBuffering( decoder_t * );
  54. /**
  55.  * This function returns true if the decoder fifo is empty and false otherwise.
  56.  */
  57. bool input_DecoderIsEmpty( decoder_t * );
  58. /**
  59.  * This function activates the request closed caption channel.
  60.  */
  61. int input_DecoderSetCcState( decoder_t *, bool b_decode, int i_channel );
  62. /**
  63.  * This function returns an error if the requested channel does not exist and
  64.  * set pb_decode to the channel status(active or not) otherwise.
  65.  */
  66. int input_DecoderGetCcState( decoder_t *, bool *pb_decode, int i_channel );
  67. /**
  68.  * This function set each pb_present entry to true if the corresponding channel
  69.  * exists or false otherwise.
  70.  */
  71. void input_DecoderIsCcPresent( decoder_t *, bool pb_present[4] );
  72. /**
  73.  * This function force the display of the next picture and fills the stream
  74.  * time consumed.
  75.  */
  76. void input_DecoderFrameNext( decoder_t *p_dec, mtime_t *pi_duration );
  77. /**
  78.  * This function will return true if the ES format or meta data have changed since
  79.  * the last call. In which case, it will do a copy of the current es_format_t if p_fmt
  80.  * is not NULL and will do a copy of the current description if pp_meta is non NULL.
  81.  * The es_format_t MUST be freed by es_format_Clean and *pp_meta MUST be freed by
  82.  * vlc_meta_Delete.
  83.  * Otherwise it will return false and will not initialize p_fmt and *pp_meta.
  84.  */
  85. bool input_DecoderHasFormatChanged( decoder_t *p_dec, es_format_t *p_fmt, vlc_meta_t **pp_meta );
  86. /**
  87.  * This function returns the current size in bytes of the decoder fifo
  88.  */
  89. size_t input_DecoderGetFifoSize( decoder_t *p_dec );
  90. #endif