simplify tstamp check
This commit is contained in:
parent
c7806ff0cc
commit
94b001aa38
1 changed files with 2 additions and 1 deletions
|
@ -402,7 +402,8 @@ int extract_frame_webm(oxstate *state) {
|
|||
|
||||
while((img = vpx_codec_get_frame(&codec, &iter))) {
|
||||
//we got a frame...
|
||||
if(seek_tstamp-pkt_tstamp<=0) {
|
||||
|
||||
if(seek_tstamp < pkt_tstamp) {
|
||||
unsigned int y;
|
||||
unsigned char *q, *p, *q2, *p2;
|
||||
OggPlayYUVChannels from;
|
||||
|
|
Loading…
Reference in a new issue