summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-07-06 10:51:04 +0200
committerCarl Hetherington <cth@carlh.net>2022-07-20 10:22:55 +0200
commite7efb7d651d4555ed8dd2b3c4980b5222d1e0521 (patch)
tree1e84d57ad25bf94c3b9963d7e941a1d8f8efae50
parent58c63c02bc26209f42f42bccbe4a587f9df6f05f (diff)
Improve a variable name.
-rw-r--r--src/lib/dcp_subtitle_decoder.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/dcp_subtitle_decoder.cc b/src/lib/dcp_subtitle_decoder.cc
index 4743ecf42..08c2bf7ec 100644
--- a/src/lib/dcp_subtitle_decoder.cc
+++ b/src/lib/dcp_subtitle_decoder.cc
@@ -41,9 +41,9 @@ DCPSubtitleDecoder::DCPSubtitleDecoder (shared_ptr<const Film> film, shared_ptr<
: Decoder (film)
{
/* Load the XML or MXF file */
- auto const c = load (content->path(0));
- c->fix_empty_font_ids ();
- _subtitles = c->subtitles ();
+ auto const asset = load (content->path(0));
+ asset->fix_empty_font_ids ();
+ _subtitles = asset->subtitles ();
_next = _subtitles.begin ();
text.push_back (make_shared<TextDecoder>(this, content->only_text()));