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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
|
/* $Id: reader.c,v 1.21 2005/11/25 15:05:25 titer Exp $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
#include "hb.h"
typedef struct
{
hb_job_t * job;
hb_title_t * title;
volatile int * die;
hb_dvd_t * dvd;
hb_buffer_t * ps;
hb_stream_t * stream;
uint sequence;
int saw_video;
int64_t scr_offset;
int64_t last_scr;
int scr_changes;
} hb_reader_t;
/***********************************************************************
* Local prototypes
**********************************************************************/
static void ReaderFunc( void * );
static hb_fifo_t ** GetFifoForId( hb_job_t * job, int id );
/***********************************************************************
* hb_reader_init
***********************************************************************
*
**********************************************************************/
hb_thread_t * hb_reader_init( hb_job_t * job )
{
hb_reader_t * r;
r = calloc( sizeof( hb_reader_t ), 1 );
r->job = job;
r->title = job->title;
r->die = job->die;
r->sequence = 0;
return hb_thread_init( "reader", ReaderFunc, r,
HB_NORMAL_PRIORITY );
}
/***********************************************************************
* ReaderFunc
***********************************************************************
*
**********************************************************************/
static void ReaderFunc( void * _r )
{
hb_reader_t * r = _r;
hb_fifo_t ** fifos;
hb_buffer_t * buf;
hb_buffer_t * buf_old;
hb_list_t * list;
int n;
int chapter = -1;
int chapter_end = r->job->chapter_end;
if( !( r->dvd = hb_dvd_init( r->title->dvd ) ) )
{
if ( !( r->stream = hb_stream_open( r->title->dvd, 1 ) ) )
{
return;
}
}
if (r->dvd)
{
/*
* XXX this code is a temporary hack that should go away if/when
* chapter merging goes away in libhb/dvd.c
* map the start and end chapter numbers to on-media chapter
* numbers since chapter merging could cause the handbrake numbers
* to diverge from the media numbers and, if our chapter_end is after
* a media chapter that got merged, we'll stop ripping too early.
*/
int start = r->job->chapter_start;
hb_chapter_t * chap = hb_list_item( r->title->list_chapter, chapter_end - 1 );
chapter_end = chap->index;
if (start > 1)
{
chap = hb_list_item( r->title->list_chapter, start - 1 );
start = chap->index;
}
/* end chapter mapping XXX */
if( !hb_dvd_start( r->dvd, r->title->index, start ) )
{
hb_dvd_close( &r->dvd );
return;
}
}
list = hb_list_init();
r->ps = hb_buffer_init( HB_DVD_READ_BUFFER_SIZE );
while( !*r->die && !r->job->done )
{
if (r->dvd)
chapter = hb_dvd_chapter( r->dvd );
else if (r->stream)
chapter = 1;
if( chapter < 0 )
{
hb_log( "reader: end of the title reached" );
break;
}
if( chapter > chapter_end )
{
hb_log( "reader: end of chapter %d (media %d) reached at media chapter %d",
r->job->chapter_end, chapter_end, chapter );
break;
}
if (r->dvd)
{
if( !hb_dvd_read( r->dvd, r->ps ) )
{
break;
}
}
else if (r->stream)
{
if ( !hb_stream_read( r->stream, r->ps ) )
{
break;
}
}
if( r->job->indepth_scan )
{
/*
* Need to update the progress during a subtitle scan
*/
hb_state_t state;
#define p state.param.working
state.state = HB_STATE_WORKING;
p.progress = (float)chapter / (float)r->job->chapter_end;
if( p.progress > 1.0 )
{
p.progress = 1.0;
}
p.rate_avg = 0.0;
p.hours = -1;
p.minutes = -1;
p.seconds = -1;
hb_set_state( r->job->h, &state );
}
hb_demux_ps( r->ps, list );
while( ( buf = hb_list_item( list, 0 ) ) )
{
hb_list_rem( list, buf );
fifos = GetFifoForId( r->job, buf->id );
if ( ! r->saw_video )
{
/* The first video packet defines 'time zero' so discard
data until we get a video packet with a PTS */
if ( buf->id == 0xE0 && buf->start != -1 )
{
r->saw_video = 1;
r->scr_offset = buf->start;
r->last_scr = buf->stop;
hb_log( "reader: first SCR %llu scr_offset %llu",
r->last_scr, r->scr_offset );
}
else
{
fifos = NULL;
}
}
if( fifos )
{
/*
* This section of code implements the timing model of
* the "Standard Target Decoder" (STD) of the MPEG2 standard
* (specified in ISO 13818-1 sections 2.4.2, 2.5.2 & Annex D).
* The STD removes and corrects for clock discontinuities so
* that the time stamps on the video, audio & other media
* streams can be used for cross-media synchronization. To do
* this the STD has its own timestamp value, the System Clock
* Reference or SCR, in the PACK header. Clock discontinuities
* are detected using the SCR & and the adjustment needed
* to correct post-discontinuity timestamps to be contiguous
* with pre-discontinuity timestamps is computed from pre- and
* post-discontinuity values of the SCR. Then this adjustment
* is applied to every media timestamp (PTS).
*
* hb_demux_ps left the SCR for this pack in buf->stop.
* ISO 13818-1 says there must be an SCR at least every 700ms
* (100ms for Transport Streams) so if the difference between
* this SCR & the previous is >700ms it's a discontinuity.
* If the difference is negative it's non-physical (time doesn't
* go backward) and must also be a discontinuity. When we find a
* discontinuity we adjust the scr_offset so that the SCR of the
* new packet lines up with that of the previous packet.
*/
int64_t scr_delta = buf->stop - r->last_scr;
if ( scr_delta > (90*700) || scr_delta < -90 )
{
++r->scr_changes;
r->scr_offset += scr_delta - 1;
}
r->last_scr = buf->stop;
buf->stop = -1;
/*
* The last section detected discontinuites and computed the
* appropriate correction to remove them. The next couple of
* lines apply the correction to the media timestamps so the
* code downstream of us sees only timestamps relative to the
* same, continuous clock with time zero on that clock being
* the time of the first video packet.
*/
if ( buf->start != -1 )
{
/* this packet has a PTS - correct it for the initial
video time offset & any timing discontinuities. */
buf->start -= r->scr_offset;
}
buf->sequence = r->sequence++;
for( n = 0; fifos[n] != NULL; n++)
{
if( n != 0 )
{
/*
* Replace the buffer with a new copy of itself for when
* it is being sent down multiple fifos.
*/
buf_old = buf;
buf = hb_buffer_init(buf_old->size);
memcpy( buf->data, buf_old->data, buf->size );
hb_buffer_copy_settings( buf, buf_old );
}
while( !*r->die && !r->job->done &&
hb_fifo_is_full( fifos[n] ) )
{
/*
* Loop until the incoming fifo is reaqdy to receive
* this buffer.
*/
hb_snooze( 50 );
}
hb_fifo_push( fifos[n], buf );
}
}
else
{
hb_buffer_close( &buf );
}
}
}
/* send an empty buffer upstream to signal we're done */
hb_fifo_push( r->job->fifo_mpeg2, hb_buffer_init(0) );
hb_list_empty( &list );
hb_buffer_close( &r->ps );
if (r->dvd)
{
hb_dvd_stop( r->dvd );
hb_dvd_close( &r->dvd );
}
else if (r->stream)
{
hb_stream_close(&r->stream);
}
hb_log( "reader: done. %d scr changes", r->scr_changes );
free( r );
_r = NULL;
}
/***********************************************************************
* GetFifoForId
***********************************************************************
*
**********************************************************************/
static hb_fifo_t ** GetFifoForId( hb_job_t * job, int id )
{
hb_title_t * title = job->title;
hb_audio_t * audio;
hb_subtitle_t * subtitle;
int i, n;
static hb_fifo_t * fifos[8];
memset(fifos, 0, sizeof(fifos));
if( id == 0xE0 )
{
if( job->indepth_scan )
{
/*
* Ditch the video here during the indepth scan until
* we can improve the MPEG2 decode performance.
*/
return NULL;
}
else
{
fifos[0] = job->fifo_mpeg2;
return fifos;
}
}
if( job->indepth_scan ) {
/*
* Count the occurances of the subtitles, don't actually
* return any to encode unless we are looking fro forced
* subtitles in which case we need to look in the sub picture
* to see if it has the forced flag enabled.
*/
for (i=0; i < hb_list_count(title->list_subtitle); i++) {
subtitle = hb_list_item( title->list_subtitle, i);
if (id == subtitle->id) {
/*
* A hit, count it.
*/
subtitle->hits++;
if( job->subtitle_force )
{
fifos[0] = subtitle->fifo_in;
return fifos;
}
break;
}
}
} else {
if( ( subtitle = hb_list_item( title->list_subtitle, 0 ) ) &&
id == subtitle->id )
{
fifos[0] = subtitle->fifo_in;
return fifos;
}
}
if( !job->indepth_scan )
{
n = 0;
for( i = 0; i < hb_list_count( title->list_audio ); i++ )
{
audio = hb_list_item( title->list_audio, i );
if( id == audio->id )
{
fifos[n++] = audio->priv.fifo_in;
}
}
if( n != 0 )
{
return fifos;
}
}
return NULL;
}
|