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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * input_interface.h: Input functions usable ouside input code.
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2008 the VideoLAN team
  5.  * $Id: b7cde94803ffc461e2869f64b09e2c5f7d4323c6 $
  6.  *
  7.  * Authors: Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
  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. #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__)
  24. # error This header file can only be included from LibVLC.
  25. #endif
  26. #ifndef _INPUT_INTERFACE_H
  27. #define _INPUT_INTERFACE_H 1
  28. #include <vlc_input.h>
  29. #include <libvlc.h>
  30. /**********************************************************************
  31.  * Item metadata
  32.  **********************************************************************/
  33. void input_item_SetPreparsed( input_item_t *p_i, bool b_preparsed );
  34. void input_item_SetArtNotFound( input_item_t *p_i, bool b_not_found );
  35. void input_item_SetArtFetched( input_item_t *p_i, bool b_art_fetched );
  36. void input_item_SetEpg( input_item_t *p_item,
  37.                         const char *psz_epg, const vlc_epg_t *p_epg );
  38. int input_Preparse( vlc_object_t *, input_item_t * );
  39. /* misc/stats.c
  40.  * FIXME it should NOT be defined here or not coded in misc/stats.c */
  41. input_stats_t *stats_NewInputStats( input_thread_t *p_input );
  42. /**
  43.  * This function releases an input_resource_t and all associated resources.
  44.  */
  45. void input_resource_Delete( input_resource_t * );
  46. /**
  47.  * This function deletes the current sout in the resources.
  48.  */
  49. void input_resource_TerminateSout( input_resource_t *p_resource );
  50. /**
  51.  * This function deletes the current vout in the resources.
  52.  */
  53. void input_resource_TerminateVout( input_resource_t *p_resource );
  54. /**
  55.  * This function return true if there is at least one vout in the resources.
  56.  *
  57.  * It can only be called on detached resources.
  58.  */
  59. bool input_resource_HasVout( input_resource_t *p_resource );
  60. /* input.c */
  61. /**
  62.  * This function detaches resources from a dead input.
  63.  *
  64.  * It MUST be called on a dead input (p_input->b_dead true) otherwise
  65.  * it will assert.
  66.  * It does not support concurrent calls.
  67.  */
  68. input_resource_t *input_DetachResource( input_thread_t * );
  69. /* */
  70. typedef enum
  71. {
  72.     INPUT_STATISTIC_DECODED_VIDEO,
  73.     INPUT_STATISTIC_DECODED_AUDIO,
  74.     INPUT_STATISTIC_DECODED_SUBTITLE,
  75.     /* Use them only if you do not goes through a access_out module */
  76.     INPUT_STATISTIC_SENT_PACKET,
  77.     INPUT_STATISTIC_SENT_BYTE,
  78. } input_statistic_t;
  79. /**
  80.  * It will update internal input statistics from external sources.
  81.  * XXX For now, the only one allowed to do it is stream_out and input core.
  82.  */
  83. void input_UpdateStatistic( input_thread_t *, input_statistic_t, int i_delta );
  84. #endif