projects
/
handbrake
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afdbdb5
)
libhb: fix pts p-to-p start time in files parsed by libav
author
jstebbins
<jstebbins.hb@gmail.com>
Wed, 26 Jun 2013 15:18:16 +0000
(15:18 +0000)
committer
jstebbins
<jstebbins.hb@gmail.com>
Wed, 26 Jun 2013 15:18:16 +0000
(15:18 +0000)
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
libhb/reader.c
patch
|
blob
|
history
diff --git
a/libhb/reader.c
b/libhb/reader.c
index 83e6e513f5f38fe9aff055ad2a3893f79d0003de..a7405fed7c3fb880461d499473637362a874a634 100644
(file)
--- 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;
}
}