diff options
Diffstat (limited to 'libhb/sync.c')
-rw-r--r-- | libhb/sync.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libhb/sync.c b/libhb/sync.c index f0b1b9abc..639baad46 100644 --- a/libhb/sync.c +++ b/libhb/sync.c @@ -1264,8 +1264,7 @@ static void streamFlush( sync_stream_t * stream ) { stream->max_frame_duration = buf->s.duration; } - if ((buf->s.start < 0) || - (stream->type == SYNC_TYPE_VIDEO && buf->s.duration < 256)) + if (buf->s.start < 0) { // The pipeline can't handle negative timestamps // and it is sometimes not possible to avoid one @@ -1275,9 +1274,6 @@ static void streamFlush( sync_stream_t * stream ) // until we have seen the first PTS for all streams // so sometimes we may start before we have seen // the earliest PTS - // - // Also, encx264.c can't handle timestamps that are spaced - // less than 256 ticks apart. saveChap(stream, buf); hb_buffer_close(&buf); } |