diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-10-31 22:44:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-02 00:12:56 +0100 |
| commit | 9e613ae8a3cd7994194d2d709f6ff9b88feac70b (patch) | |
| tree | 40611aafec40f836ca23ef9b99093d526f9d43c1 /test/test.cc | |
| parent | da15bff6e278d351301c9c50a4c96737ae4b5545 (diff) | |
Add Data class and change API to a raw pointer.
Diffstat (limited to 'test/test.cc')
| -rw-r--r-- | test/test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.cc b/test/test.cc index 245dd91c..bace2326 100644 --- a/test/test.cc +++ b/test/test.cc @@ -429,7 +429,7 @@ black_picture_asset (boost::filesystem::path dir, int frames) boost::filesystem::create_directories (dir); shared_ptr<dcp::PictureAssetWriter> writer = asset->start_write (dir / "pic.mxf", true); for (int i = 0; i < frames; ++i) { - writer->write (frame.data().get(), frame.size()); + writer->write (frame.data(), frame.size()); } writer->finalize (); |
