summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-11 20:21:37 +0100
committerCarl Hetherington <cth@carlh.net>2023-02-18 00:35:01 +0100
commite053057472ec5ccba879b206c95b9997e77ff06d (patch)
tree3d63f191419ce51ead7f6940f986bd405f0e3425 /src
parent7c86201edcf2999561fb3efe3057cd913d0553ef (diff)
Update comment with details about SMPTE 2010/2014 subtitle standards.
Diffstat (limited to 'src')
-rw-r--r--src/types.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/types.h b/src/types.h
index 7e0ae9a9..6c40c37d 100644
--- a/src/types.h
+++ b/src/types.h
@@ -157,18 +157,18 @@ extern HAlign string_to_halign (std::string s);
enum class VAlign
{
/** vertical position is distance:
- * from top of screen to top of subtitle (for SMPTE) or
- * from top of screen to subtitle baseline (for Interop)
+ * from top of screen to top of subtitle (for SMPTE 428-7:{2007,2010} or
+ * from top of screen to subtitle baseline (for Interop or SMPTE 428-7:2014)
*/
TOP,
/** vertical position is distance:
- * from centre of screen to centre of subtitle (for SMPTE) or
- * from centre of screen to subtitle baseline (for Interop)
+ * from centre of screen to centre of subtitle (for SMPTE 428-7:{2007,2010}) or
+ * from centre of screen to subtitle baseline (for Interop or SMPTE 428-7:2014)
*/
CENTER,
/** vertical position is distance:
- * from bottom of screen to bottom of subtitle (for SMPTE) or
- * from bottom of screen to subtitle baseline (for Interop)
+ * from bottom of screen to bottom of subtitle (for SMPTE 428-7:{2007,2010}) or
+ * from bottom of screen to subtitle baseline (for Interop or SMPTE 428-7:2014)
*/
BOTTOM
};