summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg_file_encoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-04-19 14:03:20 +0200
committerCarl Hetherington <cth@carlh.net>2022-04-20 22:12:46 +0200
commit341ba1115b6285fec998901e50f9afb48bcaeeb6 (patch)
tree53d64b4e7a374c21c4839aa888f7d195ca865210 /src/lib/ffmpeg_file_encoder.cc
parentaba8cb303255a5d72ee17ca072d3ae31b7832af4 (diff)
Use std::vector in AudioBuffers (#2236).
Diffstat (limited to 'src/lib/ffmpeg_file_encoder.cc')
-rw-r--r--src/lib/ffmpeg_file_encoder.cc2
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);