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:
Jonathan Thomas
2017-08-20 17:37:39 -05:00
parent 564664737a
commit f12ffe692b
84 changed files with 605 additions and 641 deletions

View File

@@ -66,7 +66,7 @@ TEST(FFmpegWriter_Test_Webm)
CHECK_EQUAL(1, r1.info.fps.den);
// Get a specific frame
tr1::shared_ptr<Frame> f = r1.GetFrame(8);
std::shared_ptr<Frame> f = r1.GetFrame(8);
// Get the image data for row 500
const unsigned char* pixels = f->GetPixels(500);