OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / libhb / reader.c
1 /* $Id: reader.c,v 1.21 2005/11/25 15:05:25 titer Exp $
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.fr/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #include "hb.h"
8
9 typedef struct
10 {
11     double average; // average time between packets
12     int64_t last;   // last timestamp seen on this stream
13     int id;         // stream id
14 } stream_timing_t;
15
16 typedef struct
17 {
18     hb_job_t     * job;
19     hb_title_t   * title;
20     volatile int * die;
21
22     hb_dvd_t     * dvd;
23     hb_stream_t  * stream;
24
25     stream_timing_t *stream_timing;
26     int64_t        scr_offset;
27     hb_psdemux_t   demux;
28     int            scr_changes;
29     uint           sequence;
30     int            saw_video;
31     int            st_slots;            // size (in slots) of stream_timing array
32 } hb_reader_t;
33
34 /***********************************************************************
35  * Local prototypes
36  **********************************************************************/
37 static void        ReaderFunc( void * );
38 static hb_fifo_t ** GetFifoForId( hb_job_t * job, int id );
39
40 /***********************************************************************
41  * hb_reader_init
42  ***********************************************************************
43  *
44  **********************************************************************/
45 hb_thread_t * hb_reader_init( hb_job_t * job )
46 {
47     hb_reader_t * r;
48
49     r = calloc( sizeof( hb_reader_t ), 1 );
50
51     r->job   = job;
52     r->title = job->title;
53     r->die   = job->die;
54     r->sequence = 0;
55
56     r->st_slots = 4;
57     r->stream_timing = calloc( sizeof(stream_timing_t), r->st_slots );
58     r->stream_timing[0].id = r->title->video_id;
59     r->stream_timing[0].average = 90000. * (double)job->vrate_base /
60                                            (double)job->vrate;
61     r->stream_timing[0].last = -r->stream_timing[0].average;
62     r->stream_timing[1].id = -1;
63
64     return hb_thread_init( "reader", ReaderFunc, r,
65                            HB_NORMAL_PRIORITY );
66 }
67
68 static void push_buf( const hb_reader_t *r, hb_fifo_t *fifo, hb_buffer_t *buf )
69 {
70     while( !*r->die && !r->job->done && hb_fifo_is_full( fifo ) )
71     {
72         /*
73          * Loop until the incoming fifo is ready to receive
74          * this buffer.
75          */
76         hb_snooze( 50 );
77     }
78     hb_fifo_push( fifo, buf );
79 }
80
81 // The MPEG STD (Standard Target Decoder) essentially requires that we keep
82 // per-stream timing so that when there's a timing discontinuity we can
83 // seemlessly join packets on either side of the discontinuity. This join
84 // requires that we know the timestamp of the previous packet and the
85 // average inter-packet time (since we position the new packet at the end
86 // of the previous packet). The next four routines keep track of this
87 // per-stream timing.
88
89 // find the per-stream timing state for 'buf'
90
91 static stream_timing_t *find_st( hb_reader_t *r, const hb_buffer_t *buf )
92 {
93     stream_timing_t *st = r->stream_timing;
94     for ( ; st->id != -1; ++st )
95     {
96         if ( st->id == buf->id )
97             return st;
98     }
99     return NULL;
100 }
101
102 // find or create the per-stream timing state for 'buf'
103
104 static stream_timing_t *id_to_st( hb_reader_t *r, const hb_buffer_t *buf )
105 {
106     stream_timing_t *st = r->stream_timing;
107     while ( st->id != buf->id && st->id != -1)
108     {
109         ++st;
110     }
111     // if we haven't seen this stream add it.
112     if ( st->id == -1 )
113     {
114         // we keep the steam timing info in an array with some power-of-two
115         // number of slots. If we don't have two slots left (one for our new
116         // entry plus one for the "-1" eol) we need to expand the array.
117         int slot = st - r->stream_timing;
118         if ( slot + 1 >= r->st_slots )
119         {
120             r->st_slots *= 2;
121             r->stream_timing = realloc( r->stream_timing, r->st_slots *
122                                         sizeof(*r->stream_timing) );
123             st = r->stream_timing + slot;
124         }
125         st->id = buf->id;
126         st->average = 30.*90.;
127         st->last = buf->renderOffset - st->average;
128
129         st[1].id = -1;
130     }
131     return st;
132 }
133
134 // update the average inter-packet time of the stream associated with 'buf'
135 // using a recursive low-pass filter with a 16 packet time constant.
136
137 static void update_ipt( hb_reader_t *r, const hb_buffer_t *buf )
138 {
139     stream_timing_t *st = id_to_st( r, buf );
140     double dt = buf->renderOffset - st->last;
141     st->average += ( dt - st->average ) * (1./32.);
142     st->last = buf->renderOffset;
143 }
144
145 // use the per-stream state associated with 'buf' to compute a new scr_offset
146 // such that 'buf' will follow the previous packet of this stream separated
147 // by the average packet time of the stream.
148
149 static void new_scr_offset( hb_reader_t *r, hb_buffer_t *buf )
150 {
151     stream_timing_t *st = id_to_st( r, buf );
152     int64_t nxt = st->last + st->average;
153     r->scr_offset = buf->renderOffset - nxt;
154     buf->renderOffset = nxt;
155     r->scr_changes = r->demux.scr_changes;
156     st->last = buf->renderOffset;
157 }
158
159 /***********************************************************************
160  * ReaderFunc
161  ***********************************************************************
162  *
163  **********************************************************************/
164 static void ReaderFunc( void * _r )
165 {
166     hb_reader_t  * r = _r;
167     hb_fifo_t   ** fifos;
168     hb_buffer_t  * buf;
169     hb_list_t    * list;
170     int            n;
171     int            chapter = -1;
172     int            chapter_end = r->job->chapter_end;
173
174     if( !( r->dvd = hb_dvd_init( r->title->dvd ) ) )
175     {
176         if ( !( r->stream = hb_stream_open( r->title->dvd, r->title ) ) )
177         {
178           return;
179         }
180     }
181
182     if (r->dvd)
183     {
184         /*
185          * XXX this code is a temporary hack that should go away if/when
186          *     chapter merging goes away in libhb/dvd.c
187          * map the start and end chapter numbers to on-media chapter
188          * numbers since chapter merging could cause the handbrake numbers
189          * to diverge from the media numbers and, if our chapter_end is after
190          * a media chapter that got merged, we'll stop ripping too early.
191          */
192         int start = r->job->chapter_start;
193         hb_chapter_t *chap = hb_list_item( r->title->list_chapter, chapter_end - 1 );
194
195         chapter_end = chap->index;
196         if (start > 1)
197         {
198            chap = hb_list_item( r->title->list_chapter, start - 1 );
199            start = chap->index;
200         }
201         /* end chapter mapping XXX */
202
203         if( !hb_dvd_start( r->dvd, r->title->index, start ) )
204         {
205             hb_dvd_close( &r->dvd );
206             return;
207         }
208
209         if ( r->job->start_at_preview )
210         {
211             // XXX code from DecodePreviews - should go into its own routine
212             hb_dvd_seek( r->dvd, (float)r->job->start_at_preview / 11. );
213         }
214     }
215     else if ( r->stream && r->job->start_at_preview )
216     {
217         // XXX code from DecodePreviews - should go into its own routine
218         hb_stream_seek( r->stream, (float)( r->job->start_at_preview - 1 ) / 11. );
219     }
220
221     list  = hb_list_init();
222     hb_buffer_t *ps = hb_buffer_init( HB_DVD_READ_BUFFER_SIZE );
223     r->demux.flaky_clock = r->title->flaky_clock;
224
225     while( !*r->die && !r->job->done )
226     {
227         if (r->dvd)
228           chapter = hb_dvd_chapter( r->dvd );
229         else if (r->stream)
230           chapter = 1;
231
232         if( chapter < 0 )
233         {
234             hb_log( "reader: end of the title reached" );
235             break;
236         }
237         if( chapter > chapter_end )
238         {
239             hb_log( "reader: end of chapter %d (media %d) reached at media chapter %d",
240                     r->job->chapter_end, chapter_end, chapter );
241             break;
242         }
243
244         if (r->dvd)
245         {
246           if( !hb_dvd_read( r->dvd, ps ) )
247           {
248               break;
249           }
250         }
251         else if (r->stream)
252         {
253           if ( !hb_stream_read( r->stream, ps ) )
254           {
255             break;
256           }
257         }
258
259         if( r->job->indepth_scan )
260         {
261             /*
262              * Need to update the progress during a subtitle scan
263              */
264             hb_state_t state;
265
266 #define p state.param.working
267
268             state.state = HB_STATE_WORKING;
269             p.progress = (double)chapter / (double)r->job->chapter_end;
270             if( p.progress > 1.0 )
271             {
272                 p.progress = 1.0;
273             }
274             p.rate_avg = 0.0;
275             p.hours    = -1;
276             p.minutes  = -1;
277             p.seconds  = -1;
278             hb_set_state( r->job->h, &state );
279         }
280
281         if ( r->title->demuxer == HB_NULL_DEMUXER )
282         {
283             hb_demux_null( ps, list, &r->demux );
284         }
285         else
286         {
287             hb_demux_ps( ps, list, &r->demux );
288         }
289
290         while( ( buf = hb_list_item( list, 0 ) ) )
291         {
292             hb_list_rem( list, buf );
293             fifos = GetFifoForId( r->job, buf->id );
294
295             if ( ! r->saw_video )
296             {
297                 /* The first video packet defines 'time zero' so discard
298                    data until we get a video packet with a PTS & DTS */
299                 if ( buf->id == r->title->video_id && buf->start != -1 &&
300                      buf->renderOffset != -1 )
301                 {
302                     // force a new scr offset computation
303                     r->scr_changes = r->demux.scr_changes - 1;
304                     r->saw_video = 1;
305                     hb_log( "reader: first SCR %lld", r->demux.last_scr );
306                 }
307                 else
308                 {
309                     fifos = NULL;
310                 }
311             }
312             if( fifos )
313             {
314                 if ( buf->renderOffset != -1 )
315                 {
316                     if ( r->scr_changes == r->demux.scr_changes )
317                     {
318                         // This packet is referenced to the same SCR as the last.
319                         // Adjust timestamp to remove the System Clock Reference
320                         // offset then update the average inter-packet time
321                         // for this stream.
322                         buf->renderOffset -= r->scr_offset;
323                         update_ipt( r, buf );
324                     }
325                     else
326                     {
327                         // This is the first audio or video packet after an SCR
328                         // change. Compute a new scr offset that would make this
329                         // packet follow the last of this stream with the correct
330                         // average spacing.
331                         stream_timing_t *st = find_st( r, buf );
332
333                         if ( st )
334                         {
335                             // if this isn't the video stream or we don't
336                             // have audio yet then generate a new scr
337                             if ( st != r->stream_timing ||
338                                  r->stream_timing[1].id == -1 )
339                             {
340                                 new_scr_offset( r, buf );
341                             }
342                             else
343                             {
344                                 // defer the scr change until we get some
345                                 // audio since audio has a timestamp per
346                                 // frame but video doesn't. Clear the timestamps
347                                 // so the decoder will regenerate them from
348                                 // the frame durations.
349                                 buf->start = -1;
350                                 buf->renderOffset = -1;
351                             }
352                         }
353                         else
354                         {
355                             // we got a new scr at the same time as the first
356                             // packet of a stream we've never seen before. We
357                             // have no idea what the timing should be so toss
358                             // this buffer & wait for a stream we've already seen.
359                             hb_buffer_close( &buf );
360                             continue;
361                         }
362                     }
363                 }
364                 if ( buf->start != -1 )
365                 {
366                     buf->start -= r->scr_offset;
367                     if ( r->job->pts_to_stop && buf->start > r->job->pts_to_stop )
368                     {
369                         // we're doing a subset of the input and we've hit the
370                         // stopping point.
371                         hb_buffer_close( &buf );
372                         goto done;
373                     }
374                 }
375
376                 buf->sequence = r->sequence++;
377                 /* if there are mutiple output fifos, send a copy of the
378                  * buffer down all but the first (we have to not ship the
379                  * original buffer or we'll race with the thread that's
380                  * consuming the buffer & inject garbage into the data stream). */
381                 for( n = 1; fifos[n] != NULL; n++)
382                 {
383                     hb_buffer_t *buf_copy = hb_buffer_init( buf->size );
384                     hb_buffer_copy_settings( buf_copy, buf );
385                     memcpy( buf_copy->data, buf->data, buf->size );
386                     push_buf( r, fifos[n], buf_copy );
387                 }
388                 push_buf( r, fifos[0], buf );
389             }
390             else
391             {
392                 hb_buffer_close( &buf );
393             }
394         }
395     }
396
397   done:
398     // send empty buffers downstream to video & audio decoders to signal we're done.
399     push_buf( r, r->job->fifo_mpeg2, hb_buffer_init(0) );
400
401     hb_audio_t *audio;
402     for( n = 0; ( audio = hb_list_item( r->job->title->list_audio, n ) ); ++n )
403     {
404         if ( audio->priv.fifo_in )
405             push_buf( r, audio->priv.fifo_in, hb_buffer_init(0) );
406     }
407
408     hb_list_empty( &list );
409     hb_buffer_close( &ps );
410     if (r->dvd)
411     {
412         hb_dvd_stop( r->dvd );
413         hb_dvd_close( &r->dvd );
414     }
415     else if (r->stream)
416     {
417         hb_stream_close(&r->stream);
418     }
419
420     if ( r->stream_timing )
421     {
422         free( r->stream_timing );
423     }
424
425     hb_log( "reader: done. %d scr changes", r->demux.scr_changes );
426     if ( r->demux.dts_drops )
427     {
428         hb_log( "reader: %d drops because DTS out of range", r->demux.dts_drops );
429     }
430
431     free( r );
432     _r = NULL;
433 }
434
435 /***********************************************************************
436  * GetFifoForId
437  ***********************************************************************
438  *
439  **********************************************************************/
440 static hb_fifo_t ** GetFifoForId( hb_job_t * job, int id )
441 {
442     hb_title_t    * title = job->title;
443     hb_audio_t    * audio;
444     hb_subtitle_t * subtitle;
445     int             i, n;
446     static hb_fifo_t * fifos[8];
447
448     memset(fifos, 0, sizeof(fifos));
449
450     if( id == title->video_id )
451     {
452         if( job->indepth_scan )
453         {
454             /*
455              * Ditch the video here during the indepth scan until
456              * we can improve the MPEG2 decode performance.
457              */
458             return NULL;
459         }
460         else
461         {
462             fifos[0] = job->fifo_mpeg2;
463             return fifos;
464         }
465     }
466
467     if( job->indepth_scan ) {
468         /*
469          * Count the occurances of the subtitles, don't actually
470          * return any to encode unless we are looking fro forced
471          * subtitles in which case we need to look in the sub picture
472          * to see if it has the forced flag enabled.
473          */
474         for (i=0; i < hb_list_count(title->list_subtitle); i++) {
475             subtitle =  hb_list_item( title->list_subtitle, i);
476             if (id == subtitle->id) {
477                 /*
478                  * A hit, count it.
479                  */
480                 subtitle->hits++;
481                 if( job->subtitle_force )
482                 {
483
484                     fifos[0] = subtitle->fifo_in;
485                     return fifos;
486                 }
487                 break;
488             }
489         }
490     } else {
491         if( ( subtitle = hb_list_item( title->list_subtitle, 0 ) ) &&
492             id == subtitle->id )
493         {
494             fifos[0] = subtitle->fifo_in;
495             return fifos;
496         }
497     }
498     if( !job->indepth_scan )
499     {
500         n = 0;
501         for( i = 0; i < hb_list_count( title->list_audio ); i++ )
502         {
503             audio = hb_list_item( title->list_audio, i );
504             if( id == audio->id )
505             {
506                 fifos[n++] = audio->priv.fifo_in;
507             }
508         }
509
510         if( n != 0 )
511         {
512             return fifos;
513         }
514     }
515
516     return NULL;
517 }
518