You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Migrating tr1 to std, adding C++11 support to build scripts, fixing crash in FFmpegReader (caused by shared_ptr, buffer, and last_video_frame corruption). Much improved stability with this change. Thanks to Craig and Peter for the help!
This commit is contained in:
@@ -112,7 +112,7 @@ TEST(Timeline_Check_Two_Track_Video)
|
||||
t.Open();
|
||||
|
||||
// Get frame
|
||||
tr1::shared_ptr<Frame> f = t.GetFrame(1);
|
||||
std::shared_ptr<Frame> f = t.GetFrame(1);
|
||||
|
||||
// Get the image data
|
||||
int pixel_row = 200;
|
||||
@@ -435,7 +435,7 @@ TEST(Timeline_Effect_Blur)
|
||||
t.Open();
|
||||
|
||||
// Get frame
|
||||
tr1::shared_ptr<Frame> f = t.GetFrame(1);
|
||||
std::shared_ptr<Frame> f = t.GetFrame(1);
|
||||
|
||||
// Close reader
|
||||
t.Close();
|
||||
|
||||
Reference in New Issue
Block a user