summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
};