forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharibcam.c
347 lines (297 loc) · 10.8 KB
/
aribcam.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/*****************************************************************************
* aribcam.c : ARIB STB-B25 software CAM stream filter
*****************************************************************************
* Copyright (C) 2014 VideoLAN and authors
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_stream.h>
#include <inttypes.h>
#include <assert.h>
#include <aribb25/arib_std_b25.h>
#include <aribb25/arib_std_b25_error_code.h>
#include <aribb25/b_cas_card.h>
#include <aribb25/b_cas_card_error_code.h>
static int Open(vlc_object_t *);
static void Close(vlc_object_t *);
vlc_module_begin ()
set_category (CAT_INPUT)
set_subcategory (SUBCAT_INPUT_STREAM_FILTER)
set_capability ("stream_filter", 0)
add_shortcut("aribcam")
set_description (N_("ARIB STD-B25 Cam module"))
set_callbacks (Open, Close)
vlc_module_end ()
struct error_messages_s
{
const int8_t i_error;
const char * const psz_error;
};
static const struct error_messages_s const b25_errors[] =
{
{ ARIB_STD_B25_ERROR_INVALID_PARAM, "Invalid parameter" },
{ ARIB_STD_B25_ERROR_NO_ENOUGH_MEMORY , "Not enough memory" },
{ ARIB_STD_B25_ERROR_NON_TS_INPUT_STREAM, "Non TS input stream" },
{ ARIB_STD_B25_ERROR_NO_PAT_IN_HEAD_16M, "No PAT in first 16MB" },
{ ARIB_STD_B25_ERROR_NO_PMT_IN_HEAD_32M, "No PMT in first 32MB" },
{ ARIB_STD_B25_ERROR_NO_ECM_IN_HEAD_32M, "No ECM in first 32MB" },
{ ARIB_STD_B25_ERROR_EMPTY_B_CAS_CARD, "Empty BCAS card" },
{ ARIB_STD_B25_ERROR_INVALID_B_CAS_STATUS, "Invalid BCAS status" },
{ ARIB_STD_B25_ERROR_ECM_PROC_FAILURE, "ECM Proc failure" },
{ ARIB_STD_B25_ERROR_DECRYPT_FAILURE, "Decryption failure" },
{ ARIB_STD_B25_ERROR_PAT_PARSE_FAILURE, "PAT Parsing failure" },
{ ARIB_STD_B25_ERROR_PMT_PARSE_FAILURE, "PMT Parsing failure" },
{ ARIB_STD_B25_ERROR_ECM_PARSE_FAILURE, "ECM Parsing failure" },
{ ARIB_STD_B25_ERROR_CAT_PARSE_FAILURE, "CAT Parsing failure" },
{ ARIB_STD_B25_ERROR_EMM_PARSE_FAILURE, "EMM Parsing failure" },
{ ARIB_STD_B25_ERROR_EMM_PROC_FAILURE, "EMM Proc failure" },
{ 0, NULL },
};
static const struct error_messages_s const bcas_errors[] =
{
{ B_CAS_CARD_ERROR_INVALID_PARAMETER, "Invalid parameter" },
{ B_CAS_CARD_ERROR_NOT_INITIALIZED, "Card not initialized" },
{ B_CAS_CARD_ERROR_NO_SMART_CARD_READER, "No smart card reader" },
{ B_CAS_CARD_ERROR_ALL_READERS_CONNECTION_FAILED, "Reader connection failed" },
{ B_CAS_CARD_ERROR_NO_ENOUGH_MEMORY, "Not enough memory" },
{ B_CAS_CARD_ERROR_TRANSMIT_FAILED, "Transmission failed" },
{ 0, NULL },
};
struct stream_sys_t
{
ARIB_STD_B25 *p_b25;
B_CAS_CARD *p_bcas;
struct
{
uint8_t *p_buf;
size_t i_size;
block_t *p_list;
} remain;
};
static const char * GetErrorMessage( const int i_error,
const struct error_messages_s const *p_errors_messages )
{
int i = 0;
while( p_errors_messages[i].psz_error )
{
if ( p_errors_messages[i].i_error == i_error )
return p_errors_messages[i].psz_error;
i++;
}
return "unknown error";
}
static size_t RemainRead( stream_t *p_stream, uint8_t *p_data, size_t i_toread )
{
stream_sys_t *p_sys = p_stream->p_sys;
size_t i_total = 0;
while( p_sys->remain.p_list && i_toread )
{
size_t i_copy = __MIN( i_toread, p_sys->remain.p_list->i_buffer );
memcpy( p_data, p_sys->remain.p_list->p_buffer, i_copy );
i_toread -= i_copy;
i_total += i_copy;
p_data += i_copy;
/* update block data pointer and release if no longer needed */
p_sys->remain.p_list->i_buffer -= i_copy;
p_sys->remain.p_list->p_buffer += i_copy;
p_sys->remain.i_size -= i_copy;
if ( p_sys->remain.p_list->i_buffer == 0 )
{
block_t *p_prevhead = p_sys->remain.p_list;
p_sys->remain.p_list = p_sys->remain.p_list->p_next;
block_Release( p_prevhead );
}
}
return i_total;
}
static bool RemainAdd( stream_t *p_stream, const uint8_t *p_data, size_t i_size )
{
stream_sys_t *p_sys = p_stream->p_sys;
if ( i_size == 0 )
return true;
block_t *p_block = block_Alloc( i_size );
if ( !p_block )
return false;
memcpy( p_block->p_buffer, p_data, i_size );
p_block->i_buffer = i_size;
block_ChainAppend( & p_sys->remain.p_list, p_block );
p_sys->remain.i_size += i_size;
return true;
}
static void RemainFlush( stream_sys_t *p_sys )
{
block_ChainRelease( p_sys->remain.p_list );
p_sys->remain.p_list = NULL;
p_sys->remain.i_size = 0;
}
#define ALL_READY (UNIT_SIZE_READY|ECM_READY|PMT_READY)
static ssize_t Read( stream_t *p_stream, void *p_buf, size_t i_toread )
{
stream_sys_t *p_sys = p_stream->p_sys;
uint8_t *p_dst = p_buf;
int i_total_read = 0;
int i_ret;
if ( !i_toread )
return -1;
/* Use data from previous reads */
size_t i_fromremain = RemainRead( p_stream, p_dst, i_toread );
i_total_read += i_fromremain;
p_dst += i_fromremain;
i_toread -= i_fromremain;
while ( i_toread )
{
/* make use of the existing buffer, overwritten by decoder data later */
int i_srcread = vlc_stream_Read( p_stream->s, p_dst, i_toread );
if ( i_srcread > 0 )
{
ARIB_STD_B25_BUFFER putbuf = { p_dst, i_srcread };
i_ret = p_sys->p_b25->put( p_sys->p_b25, &putbuf );
if ( i_ret < 0 )
{
msg_Err( p_stream, "decoder put failed: %s",
GetErrorMessage( i_ret, b25_errors ) );
return 0;
}
}
else
{
if ( i_srcread < 0 )
msg_Err( p_stream, "Can't read %lu bytes from source stream: %d", i_toread, i_srcread );
return 0;
}
ARIB_STD_B25_BUFFER getbuf;
i_ret = p_sys->p_b25->get( p_sys->p_b25, &getbuf );
if ( i_ret < 0 )
{
msg_Err( p_stream, "decoder get failed: %s",
GetErrorMessage( i_ret, b25_errors ) );
return 0;
}
if ( (size_t)getbuf.size > i_toread )
{
/* Hold remaining data for next call */
RemainAdd( p_stream, getbuf.data + i_toread, getbuf.size - i_toread );
}
int consume = __MIN( (size_t)getbuf.size, i_toread );
memcpy( p_dst, getbuf.data, consume );
i_total_read += consume;
p_dst += consume;
i_toread -= consume;
}
return i_total_read;
}
/**
*
*/
static int Seek( stream_t *p_stream, uint64_t i_pos )
{
int i_ret = vlc_stream_Seek( p_stream->s, i_pos );
if ( i_ret == VLC_SUCCESS )
RemainFlush( p_stream->p_sys );
return i_ret;
}
/**
*
*/
static int Control( stream_t *p_stream, int i_query, va_list args )
{
return vlc_stream_vaControl( p_stream->s, i_query, args );
}
static int Open( vlc_object_t *p_object )
{
stream_t *p_stream = (stream_t *) p_object;
int64_t i_stream_size = stream_Size( p_stream->s );
if ( i_stream_size > 0 && i_stream_size < ARIB_STD_B25_TS_PROBING_MIN_DATA )
return VLC_EGENERIC;
stream_sys_t *p_sys = p_stream->p_sys = calloc( 1, sizeof(*p_sys) );
if (p_sys == NULL)
return VLC_ENOMEM;
p_sys->p_b25 = create_arib_std_b25();
if ( p_sys->p_b25 )
{
if ( p_sys->p_b25->set_multi2_round( p_sys->p_b25, 4 ) < 0 )
msg_Warn( p_stream, "cannot set B25 round number" );
if ( p_sys->p_b25->set_strip( p_sys->p_b25, 0 ) < 0 )
msg_Warn( p_stream, "cannot set B25 strip option" );
if ( p_sys->p_b25->set_emm_proc( p_sys->p_b25, 0 ) < 0 )
msg_Warn( p_stream, "cannot set B25 emm_proc" );
/* ARIB STD-B25 scrambled TS's packet size is always 188 bytes */
if ( p_sys->p_b25->set_unit_size( p_sys->p_b25, 188 ) < 0)
msg_Warn( p_stream, "cannot set B25 TS packet size" );
p_sys->p_bcas = create_b_cas_card();
if ( p_sys->p_bcas )
{
int i_code = p_sys->p_bcas->init( p_sys->p_bcas );
if ( i_code < 0 )
{
/* Card could be just missing */
msg_Warn( p_stream, "cannot initialize BCAS card (missing ?): %s",
GetErrorMessage( i_code, bcas_errors ) );
goto error;
}
B_CAS_ID bcasid;
if ( p_sys->p_bcas->get_id( p_sys->p_bcas, &bcasid ) == 0 )
{
for ( int32_t i=0; i<bcasid.count; i++)
{
msg_Dbg( p_stream, "BCAS card id 0x%"PRId64" initialized",
bcasid.data[i] );
}
}
B_CAS_INIT_STATUS bcas_status;
if ( p_sys->p_bcas->get_init_status( p_sys->p_bcas, &bcas_status ) == 0 )
{
msg_Dbg( p_stream, "BCAS card system id 0x%"PRIx32,
bcas_status.ca_system_id );
}
i_code = p_sys->p_b25->set_b_cas_card( p_sys->p_b25, p_sys->p_bcas );
if ( i_code < 0 )
{
msg_Err( p_stream, "cannot attach BCAS card to decoder: %s",
GetErrorMessage( i_code, bcas_errors ) );
goto error;
}
}
else
msg_Err( p_stream, "cannot create BCAS card" );
}
else
{
msg_Err( p_stream, "cannot create B25 instance" );
goto error;
}
p_stream->pf_read = Read;
p_stream->pf_seek = Seek;
p_stream->pf_control = Control;
return VLC_SUCCESS;
error:
Close( VLC_OBJECT(p_stream) );
return VLC_EGENERIC;
}
static void Close ( vlc_object_t *p_object )
{
stream_t *p_stream = (stream_t *)p_object;
stream_sys_t *p_sys = p_stream->p_sys;
if ( p_sys->p_bcas )
p_sys->p_bcas->release( p_sys->p_bcas );
if ( p_sys->p_b25 )
p_sys->p_b25->release( p_sys->p_b25 );
free( p_sys );
}