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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
|
/* reader.c
Copyright (c) 2003-2019 HandBrake Team
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 v2.
For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
*/
#include "hb.h"
static int reader_init( hb_work_object_t * w, hb_job_t * job );
static void reader_close( hb_work_object_t * w );
static int reader_work( hb_work_object_t * w, hb_buffer_t ** buf_in,
hb_buffer_t ** buf_out);
hb_work_object_t hb_reader =
{
.id = WORK_READER,
.name = "Reader",
.init = reader_init,
.work = reader_work,
.close = reader_close,
.info = NULL,
.bsinfo = NULL,
.flush = NULL
};
typedef struct
{
int id;
hb_buffer_list_t list;
} buffer_splice_list_t;
struct hb_work_private_s
{
hb_handle_t * h;
hb_job_t * job;
hb_title_t * title;
volatile int * die;
hb_bd_t * bd;
hb_dvd_t * dvd;
hb_stream_t * stream;
hb_psdemux_t demux;
int scr_changes;
int64_t scr_offset;
int64_t last_pts;
int start_found; // found pts_to_start point
int64_t pts_to_start;
int chapter_end;
uint64_t st_first;
int64_t duration;
hb_fifo_t ** fifos;
buffer_splice_list_t * splice_list;
int splice_list_size;
};
/***********************************************************************
* Local prototypes
**********************************************************************/
static hb_fifo_t ** GetFifoForId( hb_work_private_t * r, int id );
static hb_buffer_list_t * get_splice_list(hb_work_private_t * r, int id);
static void UpdateState( hb_work_private_t * r );
/***********************************************************************
* reader_init
***********************************************************************
*
**********************************************************************/
static int64_t chapter_end_pts(hb_title_t * title, int chapter_end )
{
hb_chapter_t * chapter;
int64_t duration;
int ii;
duration = 0;
for (ii = 0; ii < chapter_end; ii++)
{
chapter = hb_list_item(title->list_chapter, ii);
duration += chapter->duration;
}
return duration;
}
static int hb_reader_open( hb_work_private_t * r )
{
if ( r->title->type == HB_BD_TYPE )
{
if ( !( r->bd = hb_bd_init( r->h, r->title->path ) ) )
return 1;
if(!hb_bd_start(r->bd, r->title))
{
hb_bd_close(&r->bd);
return 1;
}
if (r->job->angle > 1)
{
hb_bd_set_angle(r->bd, r->job->angle - 1);
}
if (r->job->start_at_preview)
{
// XXX code from DecodePreviews - should go into its own routine
hb_bd_seek(r->bd, (float)r->job->start_at_preview /
(r->job->seek_points ? (r->job->seek_points + 1.0)
: 11.0));
}
else if (r->job->pts_to_start)
{
// Note, bd seeks always put us to an i-frame. no need
// to start decoding early using r->pts_to_start
hb_bd_seek_pts(r->bd, r->job->pts_to_start);
r->duration -= r->job->pts_to_start;
r->job->reader_pts_offset = r->job->pts_to_start;
r->start_found = 1;
}
else
{
hb_bd_seek_chapter(r->bd, r->job->chapter_start);
r->duration -= chapter_end_pts(r->job->title,
r->job->chapter_start - 1);
}
}
else if (r->title->type == HB_DVD_TYPE)
{
if ( !( r->dvd = hb_dvd_init( r->h, r->title->path ) ) )
return 1;
if(!hb_dvd_start( r->dvd, r->title, r->job->chapter_start))
{
hb_dvd_close(&r->dvd);
return 1;
}
r->duration -= chapter_end_pts(r->job->title,
r->job->chapter_start - 1);
if (r->job->angle)
{
hb_dvd_set_angle(r->dvd, r->job->angle);
}
if (r->job->start_at_preview)
{
hb_dvd_seek(r->dvd, (float)r->job->start_at_preview /
(r->job->seek_points ? (r->job->seek_points + 1.0)
: 11.0));
}
// libdvdnav doesn't have a seek to timestamp function.
// So we will have to decode frames until we find the correct time
// in sync.c
r->start_found = 1;
}
else if (r->title->type == HB_STREAM_TYPE ||
r->title->type == HB_FF_STREAM_TYPE)
{
if (!(r->stream = hb_stream_open(r->h, r->title->path, r->title, 0)))
return 1;
if (r->job->start_at_preview)
{
// First try seeking to PTS title duration / (seek_points + 1)
float frac = (float)(r->job->start_at_preview - 1) /
(r->job->seek_points ? (r->job->seek_points + 1.0)
: 11.0);
int64_t start = r->title->duration * frac;
if (hb_stream_seek_ts(r->stream, start) >= 0)
{
// If successful, we know the video stream has been seeked
// to the right location. But libav does not seek all
// streams (e.g. audio and subtitles) to the same position
// for some stream types (AVI). Setting start_found = 0
// enables code that filters out packets that we receive
// before the correct start time is encountered.
r->start_found = 0;
r->job->reader_pts_offset = AV_NOPTS_VALUE;
}
else
{
// hb_stream_seek_ts only works for libav streams.
// TS and PS streams have not index and have timestamp
// discontinuities, so we seek to a byte position in these.
hb_stream_seek(r->stream, frac);
}
}
else if (r->job->pts_to_start)
{
if (hb_stream_seek_ts( r->stream, r->job->pts_to_start ) >= 0)
{
// Seek takes us to the nearest I-frame before the timestamp
// that we want. So we will retrieve the start time of the
// first packet we get, subtract that from pts_to_start, and
// inspect the reset of the frames in sync.
r->duration -= r->job->pts_to_start;
r->job->reader_pts_offset = AV_NOPTS_VALUE;
}
else
{
// hb_stream_seek_ts does nothing for TS streams and will
// return an error.
//
// So we will decode frames until we find the correct time
// in sync.c
r->start_found = 1;
}
}
else
{
//
// Standard stream, seek to the starting chapter, if set,
// and track the end chapter so that we end at the right time.
hb_chapter_t *chap;
int start = r->job->chapter_start;
chap = hb_list_item(r->job->list_chapter, r->job->chapter_end - 1);
r->chapter_end = chap->index;
if (start > 1)
{
chap = hb_list_item(r->job->list_chapter, start - 1);
start = chap->index;
}
/*
* Seek to the start chapter.
*/
hb_stream_seek_chapter(r->stream, start);
r->duration -= chapter_end_pts(r->job->title,
r->job->chapter_start - 1);
}
}
else
{
// Unknown type, should never happen
return 1;
}
return 0;
}
static int reader_init( hb_work_object_t * w, hb_job_t * job )
{
hb_work_private_t * r;
r = calloc( sizeof( hb_work_private_t ), 1 );
w->private_data = r;
r->h = job->h;
r->job = job;
r->title = job->title;
r->die = job->die;
r->demux.last_scr = AV_NOPTS_VALUE;
r->last_pts = AV_NOPTS_VALUE;
r->chapter_end = job->chapter_end;
if (!job->pts_to_start)
{
r->start_found = 1;
}
else
{
// The frame at the actual start time may not be an i-frame
// so can't be decoded without starting a little early.
// sync.c will drop early frames.
// Starting a little over 10 seconds early
r->pts_to_start = MAX(0, job->pts_to_start - 1000000);
}
if (job->pts_to_stop > 0)
{
r->duration = job->pts_to_start + job->pts_to_stop;
}
else if (job->frame_to_stop)
{
int frames = job->frame_to_start + job->frame_to_stop;
r->duration = (int64_t)frames * job->title->vrate.den * 90000 /
job->title->vrate.num;
}
else
{
int count = hb_list_count(job->title->list_chapter);
if (count == 0 || count <= job->chapter_end)
{
r->duration = job->title->duration;
}
else
{
r->duration = chapter_end_pts(job->title, job->chapter_end);
}
}
// Count number of splice lists needed for merging buffers
// that have been split
int count = 1; // 1 for video
count += hb_list_count( job->list_subtitle );
count += hb_list_count( job->list_audio );
r->splice_list_size = count;
r->splice_list = calloc(count, sizeof(buffer_splice_list_t));
// Initialize stream id's of splice lists
int ii, jj = 0;
r->splice_list[jj++].id = r->title->video_id;
for (ii = 0; ii < hb_list_count(job->list_subtitle); ii++)
{
hb_subtitle_t * subtitle = hb_list_item(job->list_subtitle, ii);
r->splice_list[jj++].id = subtitle->id;
}
for (ii = 0; ii < hb_list_count(job->list_audio); ii++)
{
hb_audio_t * audio = hb_list_item(job->list_audio, ii);
r->splice_list[jj++].id = audio->id;
}
// count also happens to be the upper bound for the number of
// fifos that will be needed (+1 for null terminator)
r->fifos = calloc(count + 1, sizeof(hb_fifo_t*));
// The stream needs to be open before starting the reader thead
// to prevent a race with decoders that may share information
// with the reader. Specifically avcodec needs this.
if ( hb_reader_open( r ) )
{
return 1;
}
return 0;
}
static void reader_close( hb_work_object_t * w )
{
hb_work_private_t * r = w->private_data;
if ( r == NULL )
{
return;
}
if (r->bd)
{
hb_bd_stop( r->bd );
hb_bd_close( &r->bd );
}
else if (r->dvd)
{
hb_dvd_stop( r->dvd );
hb_dvd_close( &r->dvd );
}
else if (r->stream)
{
hb_stream_close(&r->stream);
}
int ii;
for (ii = 0; ii < r->splice_list_size; ii++)
{
hb_buffer_list_close(&r->splice_list[ii].list);
}
free(r->fifos);
free(r->splice_list);
free(r);
}
static hb_buffer_t * splice_discontinuity( hb_work_private_t *r, hb_buffer_t *buf )
{
// Handle buffers that were split across a PCR discontinuity.
// Rejoin them into a single buffer.
hb_buffer_list_t * list = get_splice_list(r, buf->s.id);
if (list != NULL)
{
hb_buffer_list_append(list, buf);
if (buf->s.split)
{
return NULL;
}
int count = hb_buffer_list_count(list);
if (count > 1)
{
int size = hb_buffer_list_size(list);
hb_buffer_t * b = hb_buffer_init(size);
buf = hb_buffer_list_head(list);
b->s = buf->s;
int pos = 0;
while ((buf = hb_buffer_list_rem_head(list)) != NULL)
{
memcpy(b->data + pos, buf->data, buf->size);
pos += buf->size;
hb_buffer_close(&buf);
}
buf = b;
}
else
{
buf = hb_buffer_list_clear(list);
}
}
return buf;
}
static void push_buf( hb_work_private_t *r, hb_fifo_t *fifo, hb_buffer_t *buf )
{
while ( !*r->die && !r->job->done )
{
if ( hb_fifo_full_wait( fifo ) )
{
hb_fifo_push( fifo, buf );
buf = NULL;
break;
}
}
if ( buf )
{
hb_buffer_close( &buf );
}
}
static void reader_send_eof( hb_work_private_t * r )
{
int ii;
// send eof buffers downstream to decoders to signal we're done.
push_buf(r, r->job->fifo_mpeg2, hb_buffer_eof_init());
hb_audio_t *audio;
for (ii = 0; (audio = hb_list_item(r->job->list_audio, ii)); ++ii)
{
if (audio->priv.fifo_in)
push_buf(r, audio->priv.fifo_in, hb_buffer_eof_init());
}
hb_subtitle_t *subtitle;
for (ii = 0; (subtitle = hb_list_item(r->job->list_subtitle, ii)); ++ii)
{
if (subtitle->fifo_in)
{
push_buf(r, subtitle->fifo_in, hb_buffer_eof_init());
}
}
hb_log("reader: done. %d scr changes", r->demux.scr_changes);
}
static int reader_work( hb_work_object_t * w, hb_buffer_t ** buf_in,
hb_buffer_t ** buf_out)
{
hb_work_private_t * r = w->private_data;
hb_fifo_t ** fifos;
hb_buffer_t * buf;
hb_buffer_list_t list;
int ii, chapter = -1;
hb_buffer_list_clear(&list);
if (r->bd)
chapter = hb_bd_chapter( r->bd );
else if (r->dvd)
chapter = hb_dvd_chapter( r->dvd );
else if (r->stream)
chapter = hb_stream_chapter( r->stream );
if( chapter < 0 )
{
hb_log( "reader: end of the title reached" );
reader_send_eof(r);
return HB_WORK_DONE;
}
if( chapter > r->chapter_end )
{
hb_log("reader: end of chapter %d (media %d) reached at media chapter %d",
r->job->chapter_end, r->chapter_end, chapter);
reader_send_eof(r);
return HB_WORK_DONE;
}
if (r->bd)
{
if( (buf = hb_bd_read( r->bd )) == NULL )
{
reader_send_eof(r);
return HB_WORK_DONE;
}
}
else if (r->dvd)
{
if( (buf = hb_dvd_read( r->dvd )) == NULL )
{
reader_send_eof(r);
return HB_WORK_DONE;
}
}
else if (r->stream)
{
if ( (buf = hb_stream_read( r->stream )) == NULL )
{
reader_send_eof(r);
return HB_WORK_DONE;
}
}
else
{
// This should never happen
hb_error("Stream not initialized");
reader_send_eof(r);
return HB_WORK_DONE;
}
(hb_demux[r->title->demuxer])(buf, &list, &r->demux);
while ((buf = hb_buffer_list_rem_head(&list)) != NULL)
{
fifos = GetFifoForId( r, buf->s.id );
if (fifos && r->stream && !r->start_found)
{
// libav is allowing SSA subtitles to leak through that are
// prior to the seek point. So only make the adjustment to
// pts_to_start after we see the next video buffer.
if (buf->s.id != r->job->title->video_id ||
buf->s.start == AV_NOPTS_VALUE)
{
hb_buffer_close(&buf);
continue;
}
// We will inspect the timestamps of each frame in sync
// to skip from this seek point to the timestamp we
// want to start at.
r->job->reader_pts_offset = buf->s.start;
r->start_found = 1;
}
if (buf->s.start != AV_NOPTS_VALUE &&
r->scr_changes != r->demux.scr_changes)
{
// First valid timestamp after an SCR change. Update
// the per-stream scr sequence number
r->scr_changes = r->demux.scr_changes;
// libav tries to be too smart with timestamps and
// enforces unnecessary conditions. One such condition
// is that subtitle timestamps must be monotonically
// increasing. To ensure this is the case, we calculate
// an offset upon each SCR change that will guarantee this.
// This is just a very rough SCR offset. A fine grained
// offset that maintains proper sync is calculated in sync.c
if (r->last_pts != AV_NOPTS_VALUE)
{
r->scr_offset = r->last_pts + 90000 - buf->s.start;
}
else
{
r->scr_offset = -buf->s.start;
}
}
// Set the scr sequence that this buffer's timestamps are
// referenced to.
buf->s.scr_sequence = r->scr_changes;
if (buf->s.start != AV_NOPTS_VALUE)
{
buf->s.start += r->scr_offset;
}
if (buf->s.stop != AV_NOPTS_VALUE)
{
buf->s.stop += r->scr_offset;
}
if (buf->s.renderOffset != AV_NOPTS_VALUE)
{
buf->s.renderOffset += r->scr_offset;
}
if (buf->s.start > r->last_pts)
{
r->last_pts = buf->s.start;
UpdateState(r);
}
buf = splice_discontinuity(r, buf);
if (fifos && buf != NULL)
{
/* if there are multiple output fifos, send a copy of the
* buffer down all but the first (we have to not ship the
* original buffer or we'll race with the thread that's
* consuming the buffer & inject garbage into the data stream). */
for (ii = 1; fifos[ii] != NULL; ii++)
{
hb_buffer_t *buf_copy = hb_buffer_init(buf->size);
buf_copy->s = buf->s;
memcpy(buf_copy->data, buf->data, buf->size);
push_buf(r, fifos[ii], buf_copy);
}
push_buf(r, fifos[0], buf);
buf = NULL;
}
else
{
hb_buffer_close(&buf);
}
}
hb_buffer_list_close(&list);
return HB_WORK_OK;
}
static void UpdateState( hb_work_private_t * r )
{
hb_state_t state;
uint64_t now;
double avg;
if (!r->job->indepth_scan || !r->start_found)
{
// Only update state when sync.c is not handling state updates
return;
}
now = hb_get_date();
if( !r->st_first )
{
r->st_first = now;
}
hb_get_state2(r->job->h, &state);
#define p state.param.working
state.state = HB_STATE_WORKING;
p.progress = (float) r->last_pts / (float) r->duration;
if( p.progress > 1.0 )
{
p.progress = 1.0;
}
p.rate_cur = 0.0;
p.rate_avg = 0.0;
if (now > r->st_first)
{
int eta;
avg = 1000.0 * (double)r->last_pts / (now - r->st_first);
eta = (r->duration - r->last_pts) / avg;
if (eta < 0)
{
eta = 0;
}
p.eta_seconds = eta;
p.hours = eta / 3600;
p.minutes = ( eta % 3600 ) / 60;
p.seconds = eta % 60;
}
else
{
p.hours = -1;
p.minutes = -1;
p.seconds = -1;
}
#undef p
hb_set_state( r->job->h, &state );
}
/***********************************************************************
* GetFifoForId
***********************************************************************
*
**********************************************************************/
static hb_fifo_t ** GetFifoForId( hb_work_private_t * r, int id )
{
hb_job_t * job = r->job;
hb_title_t * title = job->title;
hb_audio_t * audio;
hb_subtitle_t * subtitle;
int i, n;
if (id == title->video_id)
{
if (job->indepth_scan && r->start_found)
{
/*
* Ditch the video here during the indepth scan until
* we can improve the MPEG2 decode performance.
*
* But if we specify a stop frame, we must decode the
* frames in order to count them.
*/
return NULL;
}
else
{
r->fifos[0] = job->fifo_mpeg2;
r->fifos[1] = NULL;
return r->fifos;
}
}
for (i = n = 0; i < hb_list_count( job->list_subtitle ); i++)
{
subtitle = hb_list_item( job->list_subtitle, i );
if (id == subtitle->id)
{
/* pass the subtitles to be processed */
r->fifos[n++] = subtitle->fifo_in;
}
}
if (n != 0)
{
r->fifos[n] = NULL;
return r->fifos;
}
if (!job->indepth_scan)
{
for (i = n = 0; i < hb_list_count( job->list_audio ); i++)
{
audio = hb_list_item( job->list_audio, i );
if (id == audio->id)
{
r->fifos[n++] = audio->priv.fifo_in;
}
}
if (n != 0)
{
r->fifos[n] = NULL;
return r->fifos;
}
}
return NULL;
}
static hb_buffer_list_t * get_splice_list(hb_work_private_t * r, int id)
{
int ii;
for (ii = 0; ii < r->splice_list_size; ii++)
{
if (r->splice_list[ii].id == id)
{
return &r->splice_list[ii].list;
}
}
return NULL;
}
|