[demux/avi] Enable dirac support (Set PTS on first output block)
[vlc/davidf-public.git] / modules / access / dvb / scan.h
blobcd5804299828b6dea90259989b13ac4c4cb2e9b1
1 /*****************************************************************************
2 * scan.h : functions to ease DVB scanning
3 *****************************************************************************
4 * Copyright (C) 2008 the VideoLAN team
6 * Authors: Laurent Aimar <fenrir@videolan.org>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
21 *****************************************************************************/
23 #ifdef HAVE_DVBPSI_DR_H
24 #ifdef _DVBPSI_DR_43_H_
25 # define DVBPSI_USE_NIT 1
26 # include <dvbpsi/nit.h>
27 #endif
28 #else
29 #ifdef _DVBPSI_DR_43_H_
30 # define DVBPSI_USE_NIT 1
31 # include "nit.h"
32 #endif
33 #endif
35 #ifndef DVBPSI_USE_NIT
36 # warning NIT is not supported by your libdvbpsi version
37 #endif
39 typedef enum
41 SCAN_NONE,
42 SCAN_DVB_T,
43 SCAN_DVB_S,
44 SCAN_DVB_C,
45 } scan_type_t;
47 typedef struct
49 scan_type_t type;
50 bool b_exhaustive;
51 struct
53 int i_min;
54 int i_max;
55 int i_step;
57 int i_count; /* Number of frequency test to do */
58 } frequency;
60 struct
62 /* Bandwidth should be 6, 7 or 8 */
63 int i_min;
64 int i_max;
65 int i_step;
67 int i_count;
68 } bandwidth;
70 } scan_parameter_t;
72 typedef struct
74 int i_frequency;
75 int i_bandwidth;
76 } scan_configuration_t;
78 typedef enum
80 SERVICE_UNKNOWN = 0,
81 SERVICE_DIGITAL_RADIO,
82 SERVICE_DIGITAL_TELEVISION,
83 SERVICE_DIGITAL_TELEVISION_AC_SD,
84 SERVICE_DIGITAL_TELEVISION_AC_HD,
85 } scan_service_type_t;
87 typedef struct
89 int i_program; /* program number (service id) */
90 scan_configuration_t cfg;
91 int i_snr;
93 scan_service_type_t type;
94 char *psz_name; /* channel name in utf8 or NULL */
95 int i_channel; /* -1 if unknown */
96 bool b_crypted; /* True if potentially crypted */
99 int i_network_id;
101 int i_nit_version;
102 int i_sdt_version;
104 } scan_service_t;
106 typedef struct
108 vlc_object_t *p_obj;
110 scan_configuration_t cfg;
111 int i_snr;
113 dvbpsi_handle pat;
114 dvbpsi_pat_t *p_pat;
115 int i_nit_pid;
117 dvbpsi_handle sdt;
118 dvbpsi_sdt_t *p_sdt;
120 #ifdef DVBPSI_USE_NIT
121 dvbpsi_handle nit;
122 dvbpsi_nit_t *p_nit;
123 #endif
125 } scan_session_t;
127 typedef struct
129 vlc_object_t *p_obj;
130 int64_t i_index;
131 int i_dialog_id;
132 scan_parameter_t parameter;
133 int64_t i_time_start;
135 int i_service;
136 scan_service_t **pp_service;
137 } scan_t;
140 scan_service_t *scan_service_New( int i_program, const scan_configuration_t *p_cfg );
141 void scan_service_Delete( scan_service_t *p_srv );
143 int scan_Init( vlc_object_t *p_obj, scan_t *p_scan, const scan_parameter_t *p_parameter );
144 void scan_Clean( scan_t *p_scan );
146 int scan_Next( scan_t *p_scan, scan_configuration_t *p_cfg );
148 block_t *scan_GetM3U( scan_t *p_scan );
149 bool scan_IsCancelled( scan_t *p_scan );
151 int scan_session_Init( vlc_object_t *p_obj, scan_session_t *p_session, const scan_configuration_t *p_cfg );
152 void scan_session_Clean( scan_t *p_scan, scan_session_t *p_session );
153 bool scan_session_Push( scan_session_t *p_scan, block_t *p_block );
154 void scan_service_SetSNR( scan_session_t *p_scan, int i_snr );