OSDN Git Service

- hardware players don't tolerate video or audio frames that overlap in time & some...
[handbrake-jp/handbrake-jp-git.git] / libhb / sync.c
1 /* $Id: sync.c,v 1.38 2005/04/14 21:57:58 titer Exp $
2
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.m0k.org/>.
5    It may be used under the terms of the GNU General Public License. */
6
7 #include "hb.h"
8
9 #include "samplerate.h"
10 #include "ffmpeg/avcodec.h"
11
12 #ifdef INT64_MIN
13 #undef INT64_MIN /* Because it isn't defined correctly in Zeta */
14 #endif
15 #define INT64_MIN (-9223372036854775807LL-1)
16
17 #define AC3_SAMPLES_PER_FRAME 1536
18
19 typedef struct
20 {
21     hb_audio_t * audio;
22
23     int64_t      next_start;    /* start time of next output frame */
24     int64_t      next_pts;      /* start time of next input frame */
25     int64_t      start_silence; /* if we're inserting silence, the time we started */
26     int64_t      first_drop;    /* PTS of first 'went backwards' frame dropped */
27     int          drop_count;    /* count of 'time went backwards' drops */
28     int          inserting_silence;
29
30     /* Raw */
31     SRC_STATE  * state;
32     SRC_DATA     data;
33
34     /* AC-3 */
35     int          ac3_size;
36     uint8_t    * ac3_buf;
37
38 } hb_sync_audio_t;
39
40 struct hb_work_private_s
41 {
42     hb_job_t * job;
43     int        done;
44
45     /* Video */
46     hb_subtitle_t * subtitle;
47     int64_t pts_offset;
48     int64_t next_start;         /* start time of next output frame */
49     int64_t next_pts;           /* start time of next input frame */
50     int64_t first_drop;         /* PTS of first 'went backwards' frame dropped */
51     int drop_count;             /* count of 'time went backwards' drops */
52     int video_sequence;
53     int count_frames;
54     int count_frames_max;
55     hb_buffer_t * cur; /* The next picture to process */
56
57     /* Audio */
58     hb_sync_audio_t sync_audio[8];
59
60     /* Statistics */
61     uint64_t st_counts[4];
62     uint64_t st_dates[4];
63     uint64_t st_first;
64 };
65
66 /***********************************************************************
67  * Local prototypes
68  **********************************************************************/
69 static void InitAudio( hb_work_object_t * w, int i );
70 static int  SyncVideo( hb_work_object_t * w );
71 static void SyncAudio( hb_work_object_t * w, int i );
72 static int  NeedSilence( hb_work_object_t * w, hb_audio_t *, int i );
73 static void InsertSilence( hb_work_object_t * w, int i, int64_t d );
74 static void UpdateState( hb_work_object_t * w );
75
76 /***********************************************************************
77  * hb_work_sync_init
78  ***********************************************************************
79  * Initialize the work object
80  **********************************************************************/
81 int syncInit( hb_work_object_t * w, hb_job_t * job )
82 {
83     hb_title_t       * title = job->title;
84     hb_chapter_t     * chapter;
85     int                i;
86     uint64_t           duration;
87     hb_work_private_t * pv;
88
89     pv = calloc( 1, sizeof( hb_work_private_t ) );
90     w->private_data = pv;
91
92     pv->job            = job;
93     pv->pts_offset     = INT64_MIN;
94     pv->count_frames   = 0;
95
96     /* Calculate how many video frames we are expecting */
97     duration = 0;
98     for( i = job->chapter_start; i <= job->chapter_end; i++ )
99     {
100         chapter   = hb_list_item( title->list_chapter, i - 1 );
101         duration += chapter->duration;
102     }
103     duration += 90000;
104         /* 1 second safety so we're sure we won't miss anything */
105     pv->count_frames_max = duration * job->vrate / job->vrate_base / 90000;
106
107     hb_log( "sync: expecting %d video frames", pv->count_frames_max );
108
109     /* Initialize libsamplerate for every audio track we have */
110     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
111     {
112         InitAudio( w, i );
113     }
114
115     /* Get subtitle info, if any */
116     pv->subtitle = hb_list_item( title->list_subtitle, 0 );
117
118     pv->video_sequence = 0;
119
120     return 0;
121 }
122
123 /***********************************************************************
124  * Close
125  ***********************************************************************
126  *
127  **********************************************************************/
128 void syncClose( hb_work_object_t * w )
129 {
130     hb_work_private_t * pv = w->private_data;
131     hb_job_t          * job   = pv->job;
132     hb_title_t        * title = job->title;
133     hb_audio_t        * audio = NULL;
134
135     int i;
136
137     if( pv->cur ) hb_buffer_close( &pv->cur );
138
139     for( i = 0; i < hb_list_count( title->list_audio ); i++ )
140     {
141         if ( pv->sync_audio[i].start_silence )
142         {
143             hb_log( "sync: added %d ms of silence to audio %d",
144                     (int)((pv->sync_audio[i].next_pts -
145                               pv->sync_audio[i].start_silence) / 90), i );
146         }
147
148         audio = hb_list_item( title->list_audio, i );
149         if( audio->config.out.codec == HB_ACODEC_AC3 )
150         {
151             free( pv->sync_audio[i].ac3_buf );
152         }
153         else
154         {
155             src_delete( pv->sync_audio[i].state );
156         }
157     }
158
159     free( pv );
160     w->private_data = NULL;
161 }
162
163 /***********************************************************************
164  * Work
165  ***********************************************************************
166  * The root routine of this work abject
167  *
168  * The way this works is that we are syncing the audio to the PTS of
169  * the last video that we processed. That's why we skip the audio sync
170  * if we haven't got a valid PTS from the video yet.
171  *
172  **********************************************************************/
173 int syncWork( hb_work_object_t * w, hb_buffer_t ** unused1,
174               hb_buffer_t ** unused2 )
175 {
176     hb_work_private_t * pv = w->private_data;
177     int i;
178
179     /* If we ever got a video frame, handle audio now */
180     if( pv->pts_offset != INT64_MIN )
181     {
182         for( i = 0; i < hb_list_count( pv->job->title->list_audio ); i++ )
183         {
184             SyncAudio( w, i );
185         }
186     }
187
188     /* Handle video */
189     return SyncVideo( w );
190 }
191
192 hb_work_object_t hb_sync =
193 {
194     WORK_SYNC,
195     "Synchronization",
196     syncInit,
197     syncWork,
198     syncClose
199 };
200
201 static void InitAudio( hb_work_object_t * w, int i )
202 {
203     hb_work_private_t * pv = w->private_data;
204     hb_job_t        * job   = pv->job;
205     hb_title_t      * title = job->title;
206     hb_sync_audio_t * sync;
207
208     sync        = &pv->sync_audio[i];
209     sync->audio = hb_list_item( title->list_audio, i );
210
211     if( sync->audio->config.out.codec == HB_ACODEC_AC3 )
212     {
213         /* Have a silent AC-3 frame ready in case we have to fill a
214            gap */
215         AVCodec        * codec;
216         AVCodecContext * c;
217         short          * zeros;
218
219         codec = avcodec_find_encoder( CODEC_ID_AC3 );
220         c     = avcodec_alloc_context();
221
222         c->bit_rate    = sync->audio->config.in.bitrate;
223         c->sample_rate = sync->audio->config.in.samplerate;
224         c->channels    = HB_INPUT_CH_LAYOUT_GET_DISCRETE_COUNT( sync->audio->config.in.channel_layout );
225
226         if( avcodec_open( c, codec ) < 0 )
227         {
228             hb_log( "sync: avcodec_open failed" );
229             return;
230         }
231
232         zeros          = calloc( AC3_SAMPLES_PER_FRAME *
233                                  sizeof( short ) * c->channels, 1 );
234         sync->ac3_size = sync->audio->config.in.bitrate * AC3_SAMPLES_PER_FRAME /
235                              sync->audio->config.in.samplerate / 8;
236         sync->ac3_buf  = malloc( sync->ac3_size );
237
238         if( avcodec_encode_audio( c, sync->ac3_buf, sync->ac3_size,
239                                   zeros ) != sync->ac3_size )
240         {
241             hb_log( "sync: avcodec_encode_audio failed" );
242         }
243
244         free( zeros );
245         avcodec_close( c );
246         av_free( c );
247     }
248     else
249     {
250         /* Initialize libsamplerate */
251         int error;
252         sync->state             = src_new( SRC_LINEAR, HB_AMIXDOWN_GET_DISCRETE_CHANNEL_COUNT(sync->audio->config.out.mixdown), &error );
253         sync->data.end_of_input = 0;
254     }
255 }
256
257 /***********************************************************************
258  * SyncVideo
259  ***********************************************************************
260  *
261  **********************************************************************/
262 static int SyncVideo( hb_work_object_t * w )
263 {
264     hb_work_private_t * pv = w->private_data;
265     hb_buffer_t * cur, * next, * sub = NULL;
266     hb_job_t * job = pv->job;
267
268     if( pv->done )
269     {
270         return HB_WORK_DONE;
271     }
272
273     if( hb_thread_has_exited( job->reader ) &&
274         !hb_fifo_size( job->fifo_mpeg2 ) &&
275         !hb_fifo_size( job->fifo_raw ) )
276     {
277         /* All video data has been processed already, we won't get
278            more */
279         hb_log( "sync: got %d frames, %d expected",
280                 pv->count_frames, pv->count_frames_max );
281         pv->done = 1;
282
283         hb_buffer_t * buf_tmp;
284
285        // Drop an empty buffer into our output to ensure that things
286        // get flushed all the way out.
287         buf_tmp = hb_buffer_init(0); // Empty end buffer
288         hb_fifo_push( job->fifo_sync, buf_tmp );
289
290         return HB_WORK_DONE;
291     }
292
293     if( !pv->cur && !( pv->cur = hb_fifo_get( job->fifo_raw ) ) )
294     {
295         /* We haven't even got a frame yet */
296         return HB_WORK_OK;
297     }
298     cur = pv->cur;
299
300     /* At this point we have a frame to process. Let's check
301         1) if we will be able to push into the fifo ahead
302         2) if the next frame is there already, since we need it to
303            compute the duration of the current frame*/
304     while( !hb_fifo_is_full( job->fifo_sync ) &&
305            ( next = hb_fifo_see( job->fifo_raw ) ) )
306     {
307         hb_buffer_t * buf_tmp;
308
309         if( pv->pts_offset == INT64_MIN )
310         {
311             /* This is our first frame */
312             pv->pts_offset = 0;
313             if ( cur->start != 0 )
314             {
315                 /*
316                  * The first pts from a dvd should always be zero but
317                  * can be non-zero with a transport or program stream since
318                  * we're not guaranteed to start on an IDR frame. If we get
319                  * a non-zero initial PTS extend its duration so it behaves
320                  * as if it started at zero so that our audio timing will
321                  * be in sync.
322                  */
323                 hb_log( "sync: first pts is %lld", cur->start );
324                 cur->start = 0;
325             }
326         }
327
328         /*
329          * since the first frame is always 0 and the upstream reader code
330          * is taking care of adjusting for pts discontinuities, we just have
331          * to deal with the next frame's start being in the past. This can
332          * happen when the PTS is adjusted after data loss but video frame
333          * reordering causes some frames with the old clock to appear after
334          * the clock change. This creates frames that overlap in time which
335          * looks to us like time going backward. The downstream muxing code
336          * can deal with overlaps of up to a frame time but anything larger
337          * we handle by dropping frames here.
338          */
339         if ( (int64_t)( next->start - pv->next_pts ) <= 0 )
340         {
341             if ( pv->first_drop == 0 )
342             {
343                 pv->first_drop = next->start;
344             }
345             ++pv->drop_count;
346             buf_tmp = hb_fifo_get( job->fifo_raw );
347             hb_buffer_close( &buf_tmp );
348             continue;
349         }
350         if ( pv->first_drop )
351         {
352             hb_log( "sync: video time didn't advance - dropped %d frames "
353                     "(delta %d ms, current %lld, next %lld)",
354                     pv->drop_count, (int)( pv->next_pts - pv->first_drop ) / 90,
355                     pv->next_pts, pv->first_drop );
356             pv->first_drop = 0;
357             pv->drop_count = 0;
358         }
359
360         /*
361          * Track the video sequence number localy so that we can sync the audio
362          * to it using the sequence number as well as the PTS.
363          */
364         pv->video_sequence = cur->sequence;
365
366         /* Look for a subtitle for this frame */
367         if( pv->subtitle )
368         {
369             hb_buffer_t * sub2;
370             while( ( sub = hb_fifo_see( pv->subtitle->fifo_raw ) ) )
371             {
372                 /* If two subtitles overlap, make the first one stop
373                    when the second one starts */
374                 sub2 = hb_fifo_see2( pv->subtitle->fifo_raw );
375                 if( sub2 && sub->stop > sub2->start )
376                     sub->stop = sub2->start;
377
378                 // hb_log("0x%x: video seq: %lld  subtitle sequence: %lld",
379                 //       sub, cur->sequence, sub->sequence);
380
381                 if( sub->sequence > cur->sequence )
382                 {
383                     /*
384                      * The video is behind where we are, so wait until
385                      * it catches up to the same reader point on the
386                      * DVD. Then our PTS should be in the same region
387                      * as the video.
388                      */
389                     sub = NULL;
390                     break;
391                 }
392
393                 if( sub->stop > cur->start ) {
394                     /*
395                      * The stop time is in the future, so fall through
396                      * and we'll deal with it in the next block of
397                      * code.
398                      */
399                     break;
400                 }
401
402                 /*
403                  * The subtitle is older than this picture, trash it
404                  */
405                 sub = hb_fifo_get( pv->subtitle->fifo_raw );
406                 hb_buffer_close( &sub );
407             }
408
409             /*
410              * There is a valid subtitle, is it time to display it?
411              */
412             if( sub )
413             {
414                 if( sub->stop > sub->start)
415                 {
416                     /*
417                      * Normal subtitle which ends after it starts, check to
418                      * see that the current video is between the start and end.
419                      */
420                     if( cur->start > sub->start &&
421                         cur->start < sub->stop )
422                     {
423                         /*
424                          * We should be playing this, so leave the
425                          * subtitle in place.
426                          *
427                          * fall through to display
428                          */
429                         if( ( sub->stop - sub->start ) < ( 3 * 90000 ) )
430                         {
431                             /*
432                              * Subtitle is on for less than three seconds, extend
433                              * the time that it is displayed to make it easier
434                              * to read. Make it 3 seconds or until the next
435                              * subtitle is displayed.
436                              *
437                              * This is in response to Indochine which only
438                              * displays subs for 1 second - too fast to read.
439                              */
440                             sub->stop = sub->start + ( 3 * 90000 );
441
442                             sub2 = hb_fifo_see2( pv->subtitle->fifo_raw );
443
444                             if( sub2 && sub->stop > sub2->start )
445                             {
446                                 sub->stop = sub2->start;
447                             }
448                         }
449                     }
450                     else
451                     {
452                         /*
453                          * Defer until the play point is within the subtitle
454                          */
455                         sub = NULL;
456                     }
457                 }
458                 else
459                 {
460                     /*
461                      * The end of the subtitle is less than the start, this is a
462                      * sign of a PTS discontinuity.
463                      */
464                     if( sub->start > cur->start )
465                     {
466                         /*
467                          * we haven't reached the start time yet, or
468                          * we have jumped backwards after having
469                          * already started this subtitle.
470                          */
471                         if( cur->start < sub->stop )
472                         {
473                             /*
474                              * We have jumped backwards and so should
475                              * continue displaying this subtitle.
476                              *
477                              * fall through to display.
478                              */
479                         }
480                         else
481                         {
482                             /*
483                              * Defer until the play point is within the subtitle
484                              */
485                             sub = NULL;
486                         }
487                     } else {
488                         /*
489                          * Play this subtitle as the start is greater than our
490                          * video point.
491                          *
492                          * fall through to display/
493                          */
494                     }
495                 }
496             }
497         }
498
499         /*
500          * Adjust the pts of the current frame so that it's contiguous
501          * with the previous frame. The start time of the current frame
502          * has to be the end time of the previous frame and the stop
503          * time has to be the start of the next frame.  We don't
504          * make any adjustments to the source timestamps other than removing
505          * the clock offsets (which also removes pts discontinuities).
506          * This means we automatically encode at the source's frame rate.
507          * MP2 uses an implicit duration (frames end when the next frame
508          * starts) but more advanced containers like MP4 use an explicit
509          * duration. Since we're looking ahead one frame we set the
510          * explicit stop time from the start time of the next frame.
511          */
512         buf_tmp = cur;
513         pv->cur = cur = hb_fifo_get( job->fifo_raw );
514         pv->next_pts = next->start;
515         int64_t duration = next->start - buf_tmp->start;
516         if ( duration <= 0 )
517         {
518             hb_log( "sync: invalid video duration %lld, start %lld, next %lld",
519                     duration, buf_tmp->start, next->start );
520         }
521         buf_tmp->start = pv->next_start;
522         pv->next_start += duration;
523         buf_tmp->stop = pv->next_start;
524
525         /* If we have a subtitle for this picture, copy it */
526         /* FIXME: we should avoid this memcpy */
527         if( sub )
528         {
529             buf_tmp->sub         = hb_buffer_init( sub->size );
530             buf_tmp->sub->x      = sub->x;
531             buf_tmp->sub->y      = sub->y;
532             buf_tmp->sub->width  = sub->width;
533             buf_tmp->sub->height = sub->height;
534             memcpy( buf_tmp->sub->data, sub->data, sub->size );
535         }
536
537         /* Push the frame to the renderer */
538         hb_fifo_push( job->fifo_sync, buf_tmp );
539
540         /* Update UI */
541         UpdateState( w );
542
543         /* Make sure we won't get more frames then expected */
544         if( pv->count_frames >= pv->count_frames_max * 2)
545         {
546             hb_log( "sync: got too many frames (%d), exiting early", pv->count_frames );
547             pv->done = 1;
548
549            // Drop an empty buffer into our output to ensure that things
550            // get flushed all the way out.
551            buf_tmp = hb_buffer_init(0); // Empty end buffer
552            hb_fifo_push( job->fifo_sync, buf_tmp );
553
554             break;
555         }
556     }
557
558     return HB_WORK_OK;
559 }
560
561 static void OutputAudioFrame( hb_job_t *job, hb_audio_t *audio, hb_buffer_t *buf,
562                               hb_sync_audio_t *sync, hb_fifo_t *fifo, int i )
563 {
564     int64_t start = sync->next_start;
565     int64_t duration = buf->stop - buf->start;
566     if (duration <= 0 ||
567         duration > ( 90000 * AC3_SAMPLES_PER_FRAME ) / audio->config.out.samplerate )
568     {
569         hb_log("sync: audio %d weird duration %lld, start %lld, stop %lld, next %lld",
570                i, duration, buf->start, buf->stop, sync->next_pts);
571         if ( duration <= 0 )
572         {
573             duration = ( 90000 * AC3_SAMPLES_PER_FRAME ) / audio->config.out.samplerate;
574             buf->stop = buf->start + duration;
575         }
576     }
577     sync->next_pts += duration;
578
579     if( /* audio->rate == job->arate || This should work but doesn't */
580         audio->config.out.codec == HB_ACODEC_AC3 ||
581         audio->config.out.codec == HB_ACODEC_DCA )
582     {
583         /*
584          * If we don't have to do sample rate conversion or this audio is AC3
585          * pass-thru just send the input buffer downstream after adjusting
586          * its timestamps to make the output stream continuous.
587          */
588     }
589     else
590     {
591         /* Not pass-thru - do sample rate conversion */
592         int count_in, count_out;
593         hb_buffer_t * buf_raw = buf;
594         int channel_count = HB_AMIXDOWN_GET_DISCRETE_CHANNEL_COUNT(audio->config.out.mixdown) *
595                             sizeof( float );
596
597         count_in  = buf_raw->size / channel_count;
598         count_out = ( buf_raw->stop - buf_raw->start ) * audio->config.out.samplerate / 90000;
599
600         sync->data.input_frames = count_in;
601         sync->data.output_frames = count_out;
602         sync->data.src_ratio = (double)count_out / (double)count_in;
603
604         buf = hb_buffer_init( count_out * channel_count );
605         sync->data.data_in  = (float *) buf_raw->data;
606         sync->data.data_out = (float *) buf->data;
607         if( src_process( sync->state, &sync->data ) )
608         {
609             /* XXX If this happens, we're screwed */
610             hb_log( "sync: audio %d src_process failed", i );
611         }
612         hb_buffer_close( &buf_raw );
613
614         buf->size = sync->data.output_frames_gen * channel_count;
615     }
616     buf->start = start;
617     buf->stop  = start + duration;
618     buf->frametype = HB_FRAME_AUDIO;
619     sync->next_start = start + duration;
620     hb_fifo_push( fifo, buf );
621 }
622
623 /***********************************************************************
624  * SyncAudio
625  ***********************************************************************
626  *
627  **********************************************************************/
628 static void SyncAudio( hb_work_object_t * w, int i )
629 {
630     hb_work_private_t * pv = w->private_data;
631     hb_job_t        * job = pv->job;
632     hb_sync_audio_t * sync = &pv->sync_audio[i];
633     hb_audio_t      * audio = sync->audio;
634     hb_buffer_t     * buf;
635     hb_fifo_t       * fifo;
636     int               rate;
637
638     if( audio->config.out.codec == HB_ACODEC_AC3 )
639     {
640         fifo = audio->priv.fifo_out;
641         rate = audio->config.in.samplerate;
642     }
643     else
644     {
645         fifo = audio->priv.fifo_sync;
646         rate = audio->config.out.samplerate;
647     }
648
649     while( !hb_fifo_is_full( fifo ) && ( buf = hb_fifo_see( audio->priv.fifo_raw ) ) )
650     {
651         if ( (int64_t)( buf->start - sync->next_pts ) < 0 )
652         {
653             /*
654              * audio time went backwards by more than a frame time (this can
655              * happen when we reset the PTS because of lost data).
656              * Discard data that's in the past.
657              */
658             if ( sync->first_drop == 0 )
659             {
660                 sync->first_drop = buf->start;
661             }
662             ++sync->drop_count;
663             buf = hb_fifo_get( audio->priv.fifo_raw );
664             hb_buffer_close( &buf );
665             continue;
666         }
667         if ( sync->first_drop )
668         {
669             hb_log( "sync: audio %d time went backwards %d ms, dropped %d frames "
670                     "(next %lld, current %lld)", i,
671                     (int)( sync->next_pts - sync->first_drop ) / 90,
672                     sync->drop_count, sync->first_drop, sync->next_pts );
673             sync->first_drop = 0;
674             sync->drop_count = 0;
675         }
676
677         if ( sync->inserting_silence && (int64_t)(buf->start - sync->next_pts) > 0 )
678         {
679             /*
680              * if we're within one frame time of the amount of silence
681              * we need, insert just what we need otherwise insert a frame time.
682              */
683             int64_t framedur = buf->stop - buf->start;
684             if ( buf->start - sync->next_pts <= framedur )
685             {
686                 InsertSilence( w, i, buf->start - sync->next_pts );
687                 sync->inserting_silence = 0;
688             }
689             else
690             {
691                 InsertSilence( w, i, framedur );
692             }
693             continue;
694         }
695         if ( buf->start - sync->next_pts >= (90 * 100) )
696         {
697             /*
698              * there's a gap of at least 100ms between the last
699              * frame we processed & the next. Fill it with silence.
700              */
701             if ( ! sync->inserting_silence )
702             {
703                 hb_log( "sync: adding %d ms of silence to audio %d"
704                         "  start %lld, next %lld",
705                         (int)((buf->start - sync->next_pts) / 90),
706                         i, buf->start, sync->next_pts );
707                 sync->inserting_silence = 1;
708             }
709             InsertSilence( w, i, buf->stop - buf->start );
710             continue;
711         }
712
713         /*
714          * When we get here we've taken care of all the dups and gaps in the
715          * audio stream and are ready to inject the next input frame into
716          * the output stream.
717          */
718         buf = hb_fifo_get( audio->priv.fifo_raw );
719         OutputAudioFrame( job, audio, buf, sync, fifo, i );
720     }
721
722     if( NeedSilence( w, audio, i ) )
723     {
724         InsertSilence( w, i, (90000 * AC3_SAMPLES_PER_FRAME) / sync->audio->config.out.samplerate );
725     }
726 }
727
728 static int NeedSilence( hb_work_object_t * w, hb_audio_t * audio, int i )
729 {
730     hb_work_private_t * pv = w->private_data;
731     hb_job_t * job = pv->job;
732     hb_sync_audio_t * sync = &pv->sync_audio[i];
733
734     if( hb_fifo_size( audio->priv.fifo_in ) ||
735         hb_fifo_size( audio->priv.fifo_raw ) ||
736         hb_fifo_size( audio->priv.fifo_sync ) ||
737         hb_fifo_size( audio->priv.fifo_out ) )
738     {
739         /* We have some audio, we are fine */
740         return 0;
741     }
742
743     /* No audio left in fifos */
744
745     if( hb_thread_has_exited( job->reader ) )
746     {
747         /* We might miss some audio to complete encoding and muxing
748            the video track */
749         if ( sync->start_silence == 0 )
750         {
751             hb_log("sync: reader has exited, adding silence to audio %d", i);
752             sync->start_silence = sync->next_pts;
753         }
754         return 1;
755     }
756     return 0;
757 }
758
759 static void InsertSilence( hb_work_object_t * w, int i, int64_t duration )
760 {
761     hb_work_private_t * pv = w->private_data;
762     hb_job_t        *job = pv->job;
763     hb_sync_audio_t *sync = &pv->sync_audio[i];
764     hb_buffer_t     *buf;
765
766     if( sync->audio->config.out.codec == HB_ACODEC_AC3 )
767     {
768         buf        = hb_buffer_init( sync->ac3_size );
769         buf->start = sync->next_pts;
770         buf->stop  = buf->start + duration;
771         memcpy( buf->data, sync->ac3_buf, buf->size );
772         OutputAudioFrame( job, sync->audio, buf, sync, sync->audio->priv.fifo_out, i );
773     }
774     else
775     {
776         buf = hb_buffer_init( duration * sizeof( float ) *
777                     HB_AMIXDOWN_GET_DISCRETE_CHANNEL_COUNT(sync->audio->config.out.mixdown) );
778         buf->start = sync->next_pts;
779         buf->stop  = buf->start + duration;
780         memset( buf->data, 0, buf->size );
781         OutputAudioFrame( job, sync->audio, buf, sync, sync->audio->priv.fifo_sync, i );
782     }
783 }
784
785 static void UpdateState( hb_work_object_t * w )
786 {
787     hb_work_private_t * pv = w->private_data;
788     hb_state_t state;
789
790     if( !pv->count_frames )
791     {
792         pv->st_first = hb_get_date();
793     }
794     pv->count_frames++;
795
796     if( hb_get_date() > pv->st_dates[3] + 1000 )
797     {
798         memmove( &pv->st_dates[0], &pv->st_dates[1],
799                  3 * sizeof( uint64_t ) );
800         memmove( &pv->st_counts[0], &pv->st_counts[1],
801                  3 * sizeof( uint64_t ) );
802         pv->st_dates[3]  = hb_get_date();
803         pv->st_counts[3] = pv->count_frames;
804     }
805
806 #define p state.param.working
807     state.state = HB_STATE_WORKING;
808     p.progress  = (float) pv->count_frames / (float) pv->count_frames_max;
809     if( p.progress > 1.0 )
810     {
811         p.progress = 1.0;
812     }
813     p.rate_cur   = 1000.0 *
814         (float) ( pv->st_counts[3] - pv->st_counts[0] ) /
815         (float) ( pv->st_dates[3] - pv->st_dates[0] );
816     if( hb_get_date() > pv->st_first + 4000 )
817     {
818         int eta;
819         p.rate_avg = 1000.0 * (float) pv->st_counts[3] /
820             (float) ( pv->st_dates[3] - pv->st_first );
821         eta = (float) ( pv->count_frames_max - pv->st_counts[3] ) /
822             p.rate_avg;
823         p.hours   = eta / 3600;
824         p.minutes = ( eta % 3600 ) / 60;
825         p.seconds = eta % 60;
826     }
827     else
828     {
829         p.rate_avg = 0.0;
830         p.hours    = -1;
831         p.minutes  = -1;
832         p.seconds  = -1;
833     }
834 #undef p
835
836     hb_set_state( pv->job->h, &state );
837 }