diff options
author | jstebbins <[email protected]> | 2013-06-26 15:18:16 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2013-06-26 15:18:16 +0000 |
commit | 9eb156ddb5a0a4c13c8075e9f8998a80f5d65ff9 (patch) | |
tree | ea6c636ad771dedb8d4e1b8a038f4f40ba263b99 /libhb/reader.c | |
parent | afdbdb5bbe05fc16cabc306dfa480b847dd2a8c7 (diff) |
libhb: fix pts p-to-p start time in files parsed by libav
The adjustment made to the start time was made incorrectly.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5614 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/reader.c')
-rw-r--r-- | libhb/reader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/reader.c b/libhb/reader.c index 83e6e513f..a7405fed7 100644 --- a/libhb/reader.c +++ b/libhb/reader.c @@ -535,8 +535,8 @@ void ReadLoop( void * _w ) else if ( buf->s.start >= r->job->pts_to_start ) { r->job->pts_to_start = 0; - r->start_found = 1; } + r->start_found = 1; } } |