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

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * dvb.h : functions to control a DVB card under Linux with v4l2
  3.  *****************************************************************************
  4.  * Copyright (C) 1998-2004 VideoLAN
  5.  *
  6.  * Authors: Johan Bilien <jobi@via.ecp.fr>
  7.  *          Jean-Paul Saman <jpsaman@saman>
  8.  *          Christopher Ross <chris@tebibyte.org>
  9.  *          Christophe Massiot <massiot@via.ecp.fr>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.    See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA    02111, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Devices location
  27.  *****************************************************************************/
  28. #define DMX      "/dev/dvb/adapter%d/demux%d"
  29. #define FRONTEND "/dev/dvb/adapter%d/frontend%d"
  30. #define DVR      "/dev/dvb/adapter%d/dvr%d"
  31. #define CA       "/dev/dvb/adapter%d/ca%d"
  32. /*****************************************************************************
  33.  * Local structures
  34.  *****************************************************************************/
  35. typedef struct
  36. {
  37.     int i_pid;
  38.     int i_handle;
  39.     int i_type;
  40. } demux_handle_t;
  41. typedef struct frontend_t frontend_t;
  42. typedef struct
  43. {
  44.     int i_slot;
  45.     int i_resource_id;
  46.     void (* pf_handle)( access_t *, int, uint8_t *, int );
  47.     void (* pf_close)( access_t *, int );
  48.     void (* pf_manage)( access_t *, int );
  49.     void *p_sys;
  50. } en50221_session_t;
  51. #define MAX_DEMUX 48
  52. #define MAX_CI_SLOTS 16
  53. #define MAX_SESSIONS 32
  54. struct access_sys_t
  55. {
  56.     int i_handle;
  57.     demux_handle_t p_demux_handles[MAX_DEMUX];
  58.     frontend_t *p_frontend;
  59.     vlc_bool_t b_budget_mode;
  60.     /* CA management */
  61.     int i_ca_handle;
  62.     int i_nb_slots;
  63.     vlc_bool_t pb_active_slot[MAX_CI_SLOTS];
  64.     vlc_bool_t pb_tc_has_data[MAX_CI_SLOTS];
  65.     en50221_session_t p_sessions[MAX_SESSIONS];
  66.     mtime_t i_ca_timeout, i_ca_next_event;
  67.     uint8_t **pp_capmts;
  68.     int i_nb_capmts;
  69. };
  70. #define VIDEO0_TYPE     1
  71. #define AUDIO0_TYPE     2
  72. #define TELETEXT0_TYPE  3
  73. #define SUBTITLE0_TYPE  4
  74. #define PCR0_TYPE       5
  75. #define TYPE_INTERVAL   5
  76. #define OTHER_TYPE     21
  77. /*****************************************************************************
  78.  * Prototypes
  79.  *****************************************************************************/
  80. int  E_(FrontendOpen)( access_t * );
  81. int  E_(FrontendSet)( access_t * );
  82. void E_(FrontendClose)( access_t * );
  83. int E_(DMXSetFilter)( access_t *, int i_pid, int * pi_fd, int i_type );
  84. int E_(DMXUnsetFilter)( access_t *, int i_fd );
  85. int  E_(DVROpen)( access_t * );
  86. void E_(DVRClose)( access_t * );
  87. int  E_(CAMOpen)( access_t * );
  88. int  E_(CAMPoll)( access_t * );
  89. int  E_(CAMSet)( access_t *, uint8_t **, int );
  90. void E_(CAMClose)( access_t * );
  91. int E_(en50221_Poll)( access_t * );
  92. int E_(en50221_SetCAPMT)( access_t *, uint8_t **, int );
  93. void E_(en50221_End)( access_t * );