summaryrefslogtreecommitdiff
path: root/src/atmos_asset_writer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-07-10 01:24:48 +0200
committerCarl Hetherington <cth@carlh.net>2021-07-10 01:24:48 +0200
commit13154bc1a9b341f46994607fdde2e725444a6e21 (patch)
tree3fcf211b397092798b2aa39af4cc567d146a574c /src/atmos_asset_writer.cc
parent9853cbf566fdfdea096333c4caa788c29fa5c57b (diff)
Remove String namespace from around compose().compose
Diffstat (limited to 'src/atmos_asset_writer.cc')
-rw-r--r--src/atmos_asset_writer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/atmos_asset_writer.cc b/src/atmos_asset_writer.cc
index 1fe4b4e2..94620c8b 100644
--- a/src/atmos_asset_writer.cc
+++ b/src/atmos_asset_writer.cc
@@ -109,7 +109,7 @@ AtmosAssetWriter::write (uint8_t const * data, int size)
auto const r = _state->mxf_writer.WriteFrame (_state->frame_buffer, _crypto_context->context(), _crypto_context->hmac());
if (ASDCP_FAILURE(r)) {
- boost::throw_exception (MiscError(String::compose("could not write atmos MXF frame (%1)", static_cast<int>(r))));
+ boost::throw_exception (MiscError(compose("could not write atmos MXF frame (%1)", static_cast<int>(r))));
}
++_frames_written;