/** * mod_dvb * ------- * Simple DVB-Streaming via Apache 2.0 * * This work is distributed within the terms of * creative commons attribution-share alike 2.0 germany * * See http://creativecommons.org/licenses/by-sa/2.0/ for more information * * @author Bernd Holzmueller * @revision 01 * @license http://creativecommons.org/licenses/by-sa/2.0/de/ Creative Commons Attribution-Share Alike 2.0 Germany * @homepage http://oss.tiggerswelt.net/mod_dvb/ * @copyright Copyright © 2008 tiggersWelt.net */ #include "dvb_channels.h" #include "dvb_tuner.h" #define MPEG_TS_SIZE 188 extern module AP_MODULE_DECLARE_DATA dvb_module; typedef struct { char *chanfile; int dvbwait; int vpid, apid; dvb_tuner *tuner; dvb_channel *channels; dvb_channel *cdefault; } dvb_config; static void *dvb_create_config (apr_pool_t *p, char *dummy);