summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2017-04-09 23:29:30 +0100
committerCarl Hetherington <cth@carlh.net>2017-04-09 23:29:30 +0100
commita3032f36d1fe5313925f6d719552a756d43f3b47 (patch)
tree4fcf7d1ac5edb5679160ddd03789a01a22a47fb4 /src
parent8ed9037ebf9b50621009a01150c946b17ed3e982 (diff)
Try to fix build on some older GCCs.
Diffstat (limited to 'src')
-rw-r--r--src/sound_frame.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound_frame.cc b/src/sound_frame.cc
index 915099a8..521c990f 100644
--- a/src/sound_frame.cc
+++ b/src/sound_frame.cc
@@ -39,7 +39,7 @@ using std::cout;
using namespace dcp;
SoundFrame::SoundFrame (ASDCP::PCM::MXFReader* reader, int n, boost::shared_ptr<const DecryptionContext> c)
- : Frame (reader, n, c)
+ : Frame<ASDCP::PCM::MXFReader, ASDCP::PCM::FrameBuffer> (reader, n, c)
{
ASDCP::PCM::AudioDescriptor desc;
reader->FillAudioDescriptor (desc);