Bugs item #450616, was opened at 2001-08-13 14:12
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=111050&aid=450616&group_id=11050

Category: None
Group: None
>Status: Closed
Resolution: None
Priority: 5
Submitted By: Viktor Fougstedt (viktordt)
>Assigned to: Zdenek Kabelac (kabi)
Summary: qtrecompress uses wrong frame range

Initial Comment:
When you enter a range of frames to copy (or extract)
in qtrecompress, the wrong start frame is used. The
start frame _number_ is taken from the start frame
_seconds_ field.

The reason is that frames are stored in seconds
internally, but in threads.cpp ->Seek() is used instead
of ->SeekTime() to position the stream.

The following patch fixes this so that start positions
are handled correctly:

50c50
<           ars->Seek(v_str[vs].startpos);
---
>           ars->SeekTime(v_str[vs].startpos);
57c57
<           vrs->Seek(v_str[0].startpos);
---
>           vrs->SeekTime(v_str[0].startpos);


----------------------------------------------------------------------

>Comment By: Zdenek Kabelac (kabi)
Date: 2001-08-21 15:47

Message:
Logged In: YES 
user_id=15161

Shuold be already fixed

----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=111050&aid=450616&group_id=11050

_______________________________________________
Avifile mailing list
[EMAIL PROTECTED]
http://prak.org/mailman/listinfo/avifile

Reply via email to