diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-01-06 11:19:05 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-01-06 11:19:05 +0000 |
| commit | 568241745673e68031a72739a5e5a73ba3ee20a7 (patch) | |
| tree | 12257b4850b868d0355a64a1685e98b93438ed11 /src/mono_picture_asset_writer.h | |
| parent | 839bc2d9d75f0d35a2c09d5e55e075e3ab1076b2 (diff) | |
const-correctness fix.
Diffstat (limited to 'src/mono_picture_asset_writer.h')
| -rw-r--r-- | src/mono_picture_asset_writer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mono_picture_asset_writer.h b/src/mono_picture_asset_writer.h index 532f7ad7..dcea0294 100644 --- a/src/mono_picture_asset_writer.h +++ b/src/mono_picture_asset_writer.h @@ -59,7 +59,7 @@ namespace dcp { class MonoPictureAssetWriter : public PictureAssetWriter { public: - FrameInfo write (uint8_t *, int); + FrameInfo write (uint8_t const *, int); void fake_write (int size); bool finalize (); @@ -67,7 +67,7 @@ private: friend class MonoPictureAsset; MonoPictureAssetWriter (PictureAsset *, boost::filesystem::path file, Standard standard, bool); - void start (uint8_t *, int); + void start (uint8_t const *, int); /* do this with an opaque pointer so we don't have to include ASDCP headers |
