You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Many small improvements, bug fixes, and build system fixes for newer systems that have both qt4 and qt5.
This commit is contained in:
@@ -214,8 +214,14 @@ tr1::shared_ptr<Frame> ChunkReader::GetFrame(int requested_frame) throw(ReaderCl
|
||||
previous_location = location;
|
||||
}
|
||||
|
||||
// Return the frame (from the current reader)
|
||||
return local_reader->GetFrame(location.frame);
|
||||
// Get the frame (from the current reader)
|
||||
last_frame = local_reader->GetFrame(location.frame);
|
||||
|
||||
// Update the frame number property
|
||||
last_frame->number = requested_frame;
|
||||
|
||||
// Return the frame
|
||||
return last_frame;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user