diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-07 10:07:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-07 10:07:26 +0100 |
| commit | 59617eb2230e47b59882c4f9ca6092ce05f53cf1 (patch) | |
| tree | cf74445bdf863d942d599bd9820cd5a50a8113cf | |
| parent | 27e74ac5cf717233914fd017eb9ca67ee7c4af96 (diff) | |
| parent | 02b1073f910aeb4eeaa914d15a68b76b3969e690 (diff) | |
Merge branch 'master' into cxml
| -rw-r--r-- | src/picture_asset.cc | 5 | ||||
| -rw-r--r-- | src/picture_asset.h | 2 | ||||
| -rw-r--r-- | src/sound_asset.cc | 5 | ||||
| -rw-r--r-- | src/sound_asset.h | 2 | ||||
| -rw-r--r-- | wscript | 2 |
5 files changed, 1 insertions, 15 deletions
diff --git a/src/picture_asset.cc b/src/picture_asset.cc index 72a63173..b5f59f3b 100644 --- a/src/picture_asset.cc +++ b/src/picture_asset.cc @@ -533,8 +533,3 @@ MonoPictureAssetWriter::finalize () _asset->set_intrinsic_duration (_frames_written); _asset->set_duration (_frames_written); } - -MonoPictureAssetWriter::~MonoPictureAssetWriter () -{ - assert (_finalized); -} diff --git a/src/picture_asset.h b/src/picture_asset.h index 3edf3a1c..8536bacc 100644 --- a/src/picture_asset.h +++ b/src/picture_asset.h @@ -113,8 +113,6 @@ struct FrameInfo class MonoPictureAssetWriter { public: - ~MonoPictureAssetWriter (); - FrameInfo write (uint8_t* data, int size); void fake_write (int size); void finalize (); diff --git a/src/sound_asset.cc b/src/sound_asset.cc index 4a7abd4d..f59d82ad 100644 --- a/src/sound_asset.cc +++ b/src/sound_asset.cc @@ -400,8 +400,3 @@ SoundAssetWriter::finalize () _asset->set_intrinsic_duration (_frames_written); _asset->set_duration (_frames_written); } - -SoundAssetWriter::~SoundAssetWriter () -{ - assert (_finalized); -} diff --git a/src/sound_asset.h b/src/sound_asset.h index 1e3553a0..7b9c65a7 100644 --- a/src/sound_asset.h +++ b/src/sound_asset.h @@ -37,8 +37,6 @@ class SoundAsset; class SoundAssetWriter { public: - ~SoundAssetWriter (); - void write (float const * const *, int); void finalize (); @@ -2,7 +2,7 @@ import subprocess import os APPNAME = 'libdcp' -VERSION = '0.53pre' +VERSION = '0.54pre' def options(opt): opt.load('compiler_cxx') |
