summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libass/ass.h2
-rw-r--r--libass/ass_types.h3
2 files changed, 5 insertions, 0 deletions
diff --git a/libass/ass.h b/libass/ass.h
index cad25ae..78951a9 100644
--- a/libass/ass.h
+++ b/libass/ass.h
@@ -56,6 +56,7 @@ typedef struct ass_image {
IMAGE_TYPE_SHADOW
} type;
+ // New fields can be added here in new ABI-compatible library releases.
} ASS_Image;
/*
@@ -170,6 +171,7 @@ typedef enum {
* On dialogue events override: Justify
*/
ASS_OVERRIDE_BIT_JUSTIFY = 1 << 10,
+ // New enum values can be added here in new ABI-compatible library releases.
} ASS_OverrideBits;
/**
diff --git a/libass/ass_types.h b/libass/ass_types.h
index 88951a7..caa90aa 100644
--- a/libass/ass_types.h
+++ b/libass/ass_types.h
@@ -166,6 +166,7 @@ typedef enum ASS_YCbCrMatrix {
YCBCR_SMPTE240M_PC,
YCBCR_FCC_TV,
YCBCR_FCC_PC
+ // New enum values can be added here in new ABI-compatible library releases.
} ASS_YCbCrMatrix;
/*
@@ -205,6 +206,8 @@ typedef struct ass_track {
ASS_Library *library;
ASS_ParserPriv *parser_priv;
+
+ // New fields can be added here in new ABI-compatible library releases.
} ASS_Track;
#endif /* LIBASS_TYPES_H */