OSDN Git Service

Another bug fix in the per-stream timing code: If the clock reference changes on...
[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     int64_t last;   // last timestamp seen on this stream
12     double average; // average time between packets
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./16.);
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
210     list  = hb_list_init();
211     hb_buffer_t *ps = hb_buffer_init( HB_DVD_READ_BUFFER_SIZE );
212
213     while( !*r->die && !r->job->done )
214     {
215         if (r->dvd)
216           chapter = hb_dvd_chapter( r->dvd );
217         else if (r->stream)
218           chapter = 1;
219
220         if( chapter < 0 )
221         {
222             hb_log( "reader: end of the title reached" );
223             break;
224         }
225         if( chapter > chapter_end )
226         {
227             hb_log( "reader: end of chapter %d (media %d) reached at media chapter %d",
228                     r->job->chapter_end, chapter_end, chapter );
229             break;
230         }
231
232         if (r->dvd)
233         {
234           if( !hb_dvd_read( r->dvd, ps ) )
235           {
236               break;
237           }
238         }
239         else if (r->stream)
240         {
241           if ( !hb_stream_read( r->stream, ps ) )
242           {
243             break;
244           }
245         }
246
247         if( r->job->indepth_scan )
248         {
249             /*
250              * Need to update the progress during a subtitle scan
251              */
252             hb_state_t state;
253
254 #define p state.param.working
255
256             state.state = HB_STATE_WORKING;
257             p.progress = (double)chapter / (double)r->job->chapter_end;
258             if( p.progress > 1.0 )
259             {
260                 p.progress = 1.0;
261             }
262             p.rate_avg = 0.0;
263             p.hours    = -1;
264             p.minutes  = -1;
265             p.seconds  = -1;
266             hb_set_state( r->job->h, &state );
267         }
268
269         if ( r->title->demuxer == HB_NULL_DEMUXER )
270         {
271             hb_demux_null( ps, list, &r->demux );
272         }
273         else
274         {
275             hb_demux_ps( ps, list, &r->demux );
276         }
277
278         while( ( buf = hb_list_item( list, 0 ) ) )
279         {
280             hb_list_rem( list, buf );
281             fifos = GetFifoForId( r->job, buf->id );
282
283             if ( ! r->saw_video )
284             {
285                 /* The first video packet defines 'time zero' so discard
286                    data until we get a video packet with a PTS & DTS */
287                 if ( buf->id == r->title->video_id && buf->start != -1 &&
288                      buf->renderOffset != -1 )
289                 {
290                     r->saw_video = 1;
291                     hb_log( "reader: first SCR %lld", r->demux.last_scr );
292                 }
293                 else
294                 {
295                     fifos = NULL;
296                 }
297             }
298             if( fifos )
299             {
300                 if ( buf->renderOffset != -1 )
301                 {
302                     if ( r->scr_changes == r->demux.scr_changes )
303                     {
304                         // This packet is referenced to the same SCR as the last.
305                         // Adjust timestamp to remove the System Clock Reference
306                         // offset then update the average inter-packet time
307                         // for this stream.
308                         buf->renderOffset -= r->scr_offset;
309                         update_ipt( r, buf );
310                     }
311                     else
312                     {
313                         // This is the first audio or video packet after an SCR
314                         // change. Compute a new scr offset that would make this
315                         // packet follow the last of this stream with the correct
316                         // average spacing.
317                         if ( find_st( r, buf ) )
318                         {
319                             new_scr_offset( r, buf );
320                         }
321                         else
322                         {
323                             // we got a new scr at the same time as the first
324                             // packet of a stream we've never seen before. We
325                             // have no idea what the timing should be so toss
326                             // this buffer & wait for a stream we've already seen.
327                             hb_buffer_close( &buf );
328                             continue;
329                         }
330                     }
331                 }
332                 if ( buf->start != -1 )
333                     buf->start -= r->scr_offset;
334
335                 buf->sequence = r->sequence++;
336                 /* if there are mutiple output fifos, send a copy of the
337                  * buffer down all but the first (we have to not ship the
338                  * original buffer or we'll race with the thread that's
339                  * consuming the buffer & inject garbage into the data stream). */
340                 for( n = 1; fifos[n] != NULL; n++)
341                 {
342                     hb_buffer_t *buf_copy = hb_buffer_init( buf->size );
343                     hb_buffer_copy_settings( buf_copy, buf );
344                     memcpy( buf_copy->data, buf->data, buf->size );
345                     push_buf( r, fifos[n], buf_copy );
346                 }
347                 push_buf( r, fifos[0], buf );
348             }
349             else
350             {
351                 hb_buffer_close( &buf );
352             }
353         }
354     }
355
356     // send empty buffers downstream to video & audio decoders to signal we're done.
357     push_buf( r, r->job->fifo_mpeg2, hb_buffer_init(0) );
358
359     hb_audio_t *audio;
360     for( n = 0; ( audio = hb_list_item( r->job->title->list_audio, n ) ); ++n )
361     {
362         if ( audio->priv.fifo_in )
363             push_buf( r, audio->priv.fifo_in, hb_buffer_init(0) );
364     }
365
366     hb_list_empty( &list );
367     hb_buffer_close( &ps );
368     if (r->dvd)
369     {
370         hb_dvd_stop( r->dvd );
371         hb_dvd_close( &r->dvd );
372     }
373     else if (r->stream)
374     {
375         hb_stream_close(&r->stream);
376     }
377
378     if ( r->stream_timing )
379     {
380         free( r->stream_timing );
381     }
382
383     hb_log( "reader: done. %d scr changes", r->demux.scr_changes );
384
385     free( r );
386     _r = NULL;
387 }
388
389 /***********************************************************************
390  * GetFifoForId
391  ***********************************************************************
392  *
393  **********************************************************************/
394 static hb_fifo_t ** GetFifoForId( hb_job_t * job, int id )
395 {
396     hb_title_t    * title = job->title;
397     hb_audio_t    * audio;
398     hb_subtitle_t * subtitle;
399     int             i, n;
400     static hb_fifo_t * fifos[8];
401
402     memset(fifos, 0, sizeof(fifos));
403
404     if( id == title->video_id )
405     {
406         if( job->indepth_scan )
407         {
408             /*
409              * Ditch the video here during the indepth scan until
410              * we can improve the MPEG2 decode performance.
411              */
412             return NULL;
413         }
414         else
415         {
416             fifos[0] = job->fifo_mpeg2;
417             return fifos;
418         }
419     }
420
421     if( job->indepth_scan ) {
422         /*
423          * Count the occurances of the subtitles, don't actually
424          * return any to encode unless we are looking fro forced
425          * subtitles in which case we need to look in the sub picture
426          * to see if it has the forced flag enabled.
427          */
428         for (i=0; i < hb_list_count(title->list_subtitle); i++) {
429             subtitle =  hb_list_item( title->list_subtitle, i);
430             if (id == subtitle->id) {
431                 /*
432                  * A hit, count it.
433                  */
434                 subtitle->hits++;
435                 if( job->subtitle_force )
436                 {
437
438                     fifos[0] = subtitle->fifo_in;
439                     return fifos;
440                 }
441                 break;
442             }
443         }
444     } else {
445         if( ( subtitle = hb_list_item( title->list_subtitle, 0 ) ) &&
446             id == subtitle->id )
447         {
448             fifos[0] = subtitle->fifo_in;
449             return fifos;
450         }
451     }
452     if( !job->indepth_scan )
453     {
454         n = 0;
455         for( i = 0; i < hb_list_count( title->list_audio ); i++ )
456         {
457             audio = hb_list_item( title->list_audio, i );
458             if( id == audio->id )
459             {
460                 fifos[n++] = audio->priv.fifo_in;
461             }
462         }
463
464         if( n != 0 )
465         {
466             return fifos;
467         }
468     }
469
470     return NULL;
471 }
472