dvb_demux.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*
  2. * dvb_demux.h: DVB kernel demux API
  3. *
  4. * Copyright (C) 2000-2001 Marcus Metzler & Ralph Metzler
  5. * for convergence integrated media GmbH
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public License
  9. * as published by the Free Software Foundation; either version 2.1
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20. *
  21. */
  22. #ifndef _DVB_DEMUX_H_
  23. #define _DVB_DEMUX_H_
  24. #include <linux/time.h>
  25. #include <linux/timer.h>
  26. #include <linux/spinlock.h>
  27. #include <linux/mutex.h>
  28. #include "demux.h"
  29. #define DMX_TYPE_TS 0
  30. #define DMX_TYPE_SEC 1
  31. #define DMX_TYPE_PES 2
  32. #define DMX_STATE_FREE 0
  33. #define DMX_STATE_ALLOCATED 1
  34. #define DMX_STATE_SET 2
  35. #define DMX_STATE_READY 3
  36. #define DMX_STATE_GO 4
  37. #define DVB_DEMUX_MASK_MAX 18
  38. #define MAX_PID 0x1fff
  39. #define SPEED_PKTS_INTERVAL 50000
  40. struct dvb_demux_filter {
  41. struct dmx_section_filter filter;
  42. u8 maskandmode[DMX_MAX_FILTER_SIZE];
  43. u8 maskandnotmode[DMX_MAX_FILTER_SIZE];
  44. int doneq;
  45. struct dvb_demux_filter *next;
  46. struct dvb_demux_feed *feed;
  47. int index;
  48. int state;
  49. int type;
  50. u16 hw_handle;
  51. struct timer_list timer;
  52. };
  53. #define DMX_FEED_ENTRY(pos) list_entry(pos, struct dvb_demux_feed, list_head)
  54. struct dvb_demux_feed {
  55. union {
  56. struct dmx_ts_feed ts;
  57. struct dmx_section_feed sec;
  58. } feed;
  59. union {
  60. dmx_ts_cb ts;
  61. dmx_section_cb sec;
  62. } cb;
  63. struct dvb_demux *demux;
  64. void *priv;
  65. int type;
  66. int state;
  67. u16 pid;
  68. u8 *buffer;
  69. int buffer_size;
  70. struct timespec timeout;
  71. struct dvb_demux_filter *filter;
  72. int ts_type;
  73. enum dmx_ts_pes pes_type;
  74. int cc;
  75. int pusi_seen; /* prevents feeding of garbage from previous section */
  76. u16 peslen;
  77. struct list_head list_head;
  78. unsigned int index; /* a unique index for each feed (can be used as hardware pid filter index) */
  79. };
  80. struct dvb_demux {
  81. struct dmx_demux dmx;
  82. void *priv;
  83. int filternum;
  84. int feednum;
  85. int (*start_feed)(struct dvb_demux_feed *feed);
  86. int (*stop_feed)(struct dvb_demux_feed *feed);
  87. int (*write_to_decoder)(struct dvb_demux_feed *feed,
  88. const u8 *buf, size_t len);
  89. u32 (*check_crc32)(struct dvb_demux_feed *feed,
  90. const u8 *buf, size_t len);
  91. void (*memcopy)(struct dvb_demux_feed *feed, u8 *dst,
  92. const u8 *src, size_t len);
  93. int users;
  94. #define MAX_DVB_DEMUX_USERS 10
  95. struct dvb_demux_filter *filter;
  96. struct dvb_demux_feed *feed;
  97. struct list_head frontend_list;
  98. struct dvb_demux_feed *pesfilter[DMX_PES_OTHER];
  99. u16 pids[DMX_PES_OTHER];
  100. int playing;
  101. int recording;
  102. #define DMX_MAX_PID 0x2000
  103. struct list_head feed_list;
  104. u8 tsbuf[204];
  105. int tsbufp;
  106. struct mutex mutex;
  107. spinlock_t lock;
  108. uint8_t *cnt_storage; /* for TS continuity check */
  109. struct timespec speed_last_time; /* for TS speed check */
  110. uint32_t speed_pkts_cnt; /* for TS speed check */
  111. };
  112. int dvb_dmx_init(struct dvb_demux *dvbdemux);
  113. void dvb_dmx_release(struct dvb_demux *dvbdemux);
  114. void dvb_dmx_swfilter_packets(struct dvb_demux *dvbdmx, const u8 *buf,
  115. size_t count);
  116. void dvb_dmx_swfilter(struct dvb_demux *demux, const u8 *buf, size_t count);
  117. void dvb_dmx_swfilter_204(struct dvb_demux *demux, const u8 *buf,
  118. size_t count);
  119. void dvb_dmx_swfilter_raw(struct dvb_demux *demux, const u8 *buf,
  120. size_t count);
  121. #endif /* _DVB_DEMUX_H_ */