summaryrefslogtreecommitdiff
path: root/src/lib/video_mxf_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-07-10 02:02:19 +0200
committerCarl Hetherington <cth@carlh.net>2021-07-10 02:02:19 +0200
commit5b0e331380c83ec9835e8aa42fd342b2f0ad275d (patch)
tree13c27f0b3420f5c3a268a5a22a9172675fdc370c /src/lib/video_mxf_content.cc
parent5d838bc863a7569e68546026c109607fd5a94362 (diff)
Use dcp::compose rather than our own.compose
Diffstat (limited to 'src/lib/video_mxf_content.cc')
-rw-r--r--src/lib/video_mxf_content.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/video_mxf_content.cc b/src/lib/video_mxf_content.cc
index c7ee69d89..20ff3d3fc 100644
--- a/src/lib/video_mxf_content.cc
+++ b/src/lib/video_mxf_content.cc
@@ -24,8 +24,8 @@
#include "video_content.h"
#include "job.h"
#include "film.h"
-#include "compose.hpp"
#include <asdcp/KM_log.h>
+#include <dcp/compose.h>
#include <dcp/mono_picture_asset.h>
#include <dcp/stereo_picture_asset.h>
#include <dcp/exceptions.h>
@@ -102,7 +102,7 @@ VideoMXFContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
string
VideoMXFContent::summary () const
{
- return String::compose (_("%1 [video]"), path_summary());
+ return dcp::compose (_("%1 [video]"), path_summary());
}