diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-04-11 22:57:11 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-04-11 22:57:11 +0200 |
| commit | b926b52fba5952b6e826cad9814befdb3b264f1b (patch) | |
| tree | f679e84f18f04a5731604f4d4904207bec554244 /src | |
| parent | 811edcecf4c9b19c5f50bde32517c2a31644b635 (diff) | |
Fix typos in variable names.
Diffstat (limited to 'src')
| -rw-r--r-- | src/j2k_transcode.h | 2 | ||||
| -rw-r--r-- | src/reel_closed_caption_asset.h | 2 | ||||
| -rw-r--r-- | src/reel_interop_closed_caption_asset.h | 2 | ||||
| -rw-r--r-- | src/reel_smpte_closed_caption_asset.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/j2k_transcode.h b/src/j2k_transcode.h index 52a0b46e..1e149293 100644 --- a/src/j2k_transcode.h +++ b/src/j2k_transcode.h @@ -65,7 +65,7 @@ extern std::shared_ptr<OpenJPEGImage> decompress_j2k (std::shared_ptr<const Data /** @xyz Picture to compress. Parts of xyz's data WILL BE OVERWRITTEN by libopenjpeg so xyz cannot be re-used * after this call; see opj_j2k_encode where if l_reuse_data is false it will set l_tilec->data = l_img_comp->data. */ -extern ArrayData compress_j2k (std::shared_ptr<const OpenJPEGImage>, int bandwith, int frames_per_second, bool threed, bool fourk, std::string comment = "libdcp"); +extern ArrayData compress_j2k (std::shared_ptr<const OpenJPEGImage>, int bandwidth, int frames_per_second, bool threed, bool fourk, std::string comment = "libdcp"); } diff --git a/src/reel_closed_caption_asset.h b/src/reel_closed_caption_asset.h index 78e05659..00102610 100644 --- a/src/reel_closed_caption_asset.h +++ b/src/reel_closed_caption_asset.h @@ -59,7 +59,7 @@ namespace dcp { class ReelClosedCaptionAsset : public ReelFileAsset { public: - ReelClosedCaptionAsset (std::shared_ptr<SubtitleAsset> asset, Fraction edit_rate, int64_t instrinsic_duration, int64_t entry_point); + ReelClosedCaptionAsset (std::shared_ptr<SubtitleAsset> asset, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point); explicit ReelClosedCaptionAsset (std::shared_ptr<const cxml::Node>); std::shared_ptr<const SubtitleAsset> asset () const { diff --git a/src/reel_interop_closed_caption_asset.h b/src/reel_interop_closed_caption_asset.h index dd60ad71..5e8f7c1e 100644 --- a/src/reel_interop_closed_caption_asset.h +++ b/src/reel_interop_closed_caption_asset.h @@ -51,7 +51,7 @@ namespace dcp { class ReelInteropClosedCaptionAsset : public ReelClosedCaptionAsset { public: - ReelInteropClosedCaptionAsset (std::shared_ptr<InteropSubtitleAsset> asset, Fraction edit_rate, int64_t instrinsic_duration, int64_t entry_point); + ReelInteropClosedCaptionAsset (std::shared_ptr<InteropSubtitleAsset> asset, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point); explicit ReelInteropClosedCaptionAsset (std::shared_ptr<const cxml::Node>); std::shared_ptr<const InteropSubtitleAsset> interop_asset () const { diff --git a/src/reel_smpte_closed_caption_asset.h b/src/reel_smpte_closed_caption_asset.h index 8b38d2ad..32a79efd 100644 --- a/src/reel_smpte_closed_caption_asset.h +++ b/src/reel_smpte_closed_caption_asset.h @@ -52,7 +52,7 @@ namespace dcp { class ReelSMPTEClosedCaptionAsset : public ReelClosedCaptionAsset { public: - ReelSMPTEClosedCaptionAsset (std::shared_ptr<SMPTESubtitleAsset> asset, Fraction edit_rate, int64_t instrinsic_duration, int64_t entry_point); + ReelSMPTEClosedCaptionAsset (std::shared_ptr<SMPTESubtitleAsset> asset, Fraction edit_rate, int64_t intrinsic_duration, int64_t entry_point); explicit ReelSMPTEClosedCaptionAsset (std::shared_ptr<const cxml::Node>); std::shared_ptr<SMPTESubtitleAsset> smpte_asset () { |
