You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Improved support for missing frames and invalid PTS (which result in gaps and duplicate frames). Also changed frame number to larger data type, and did some code clean-up and refactoring. Less crashes, and more video support!
This commit is contained in:
@@ -41,7 +41,7 @@ TEST(ReaderBase_Derived_Class)
|
||||
public:
|
||||
TestReader() { };
|
||||
Cache* GetCache() { return NULL; };
|
||||
tr1::shared_ptr<Frame> GetFrame(int number) { tr1::shared_ptr<Frame> f(new Frame()); return f; }
|
||||
tr1::shared_ptr<Frame> GetFrame(long int number) { tr1::shared_ptr<Frame> f(new Frame()); return f; }
|
||||
void Close() { };
|
||||
void Open() { };
|
||||
string Json() { };
|
||||
|
||||
Reference in New Issue
Block a user