diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-19 14:03:20 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-20 22:12:46 +0200 |
| commit | 341ba1115b6285fec998901e50f9afb48bcaeeb6 (patch) | |
| tree | 53d64b4e7a374c21c4839aa888f7d195ca865210 /src/lib/ffmpeg_file_encoder.cc | |
| parent | aba8cb303255a5d72ee17ca072d3ae31b7832af4 (diff) | |
Use std::vector in AudioBuffers (#2236).
Diffstat (limited to 'src/lib/ffmpeg_file_encoder.cc')
| -rw-r--r-- | src/lib/ffmpeg_file_encoder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ffmpeg_file_encoder.cc b/src/lib/ffmpeg_file_encoder.cc index 57103abc7..62242d65c 100644 --- a/src/lib/ffmpeg_file_encoder.cc +++ b/src/lib/ffmpeg_file_encoder.cc @@ -127,7 +127,7 @@ public: return false; } - void write (int size, int channel_offset, int channels, float** data, int64_t sample_offset) + void write (int size, int channel_offset, int channels, float* const* data, int64_t sample_offset) { DCPOMATIC_ASSERT (size); |
