summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-05-09 00:32:32 +0200
committerCarl Hetherington <cth@carlh.net>2020-05-09 00:32:32 +0200
commitf3e78c300efbf7519eda8252e7f71db0e3f1caa9 (patch)
tree58569e7360a849000a8188774ca2ab640e0fd975 /src
parentaaea79802979a8582a5d9ac6838451e143bf8d24 (diff)
Comment typo.
Diffstat (limited to 'src')
-rw-r--r--src/smpte_subtitle_asset.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smpte_subtitle_asset.cc b/src/smpte_subtitle_asset.cc
index 81a0aa6f..6a62bc1d 100644
--- a/src/smpte_subtitle_asset.cc
+++ b/src/smpte_subtitle_asset.cc
@@ -393,7 +393,7 @@ SMPTESubtitleAsset::write (boost::filesystem::path p) const
ASDCP::TimedText::MXFWriter writer;
/* This header size is a guess. Empirically it seems that each subtitle reference is 90 bytes, and we need some extra.
- The defualt size is not enough for some feature-length PNG sub projects (see DCP-o-matic #1561).
+ The default size is not enough for some feature-length PNG sub projects (see DCP-o-matic #1561).
*/
ASDCP::Result_t r = writer.OpenWrite (p.string().c_str(), writer_info, descriptor, _subtitles.size() * 90 + 16384);
if (ASDCP_FAILURE (r)) {