simplify tstamp check

This commit is contained in:
j 2010-08-25 16:37:46 +02:00
parent c7806ff0cc
commit 94b001aa38

View file

@ -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;