Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2019-05-22 01:09:23 +0300
committerJames Almer <jamrial@gmail.com>2019-05-22 01:42:54 +0300
commite88c8eedc00240eb10fc597ce8d23f2173ff30c8 (patch)
treea97963515c32c2ad60df20d5eef8fee7bc94e6e6 /include
parent3e0ec4cde1aecac8ded7ac49730d574f89341a4c (diff)
dav1d: reserve some bytes in Dav1dSettings
This way adding new fields in the future will not require breaking ABI
Diffstat (limited to 'include')
-rw-r--r--include/dav1d/dav1d.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dav1d/dav1d.h b/include/dav1d/dav1d.h
index ea97913..9afeae6 100644
--- a/include/dav1d/dav1d.h
+++ b/include/dav1d/dav1d.h
@@ -65,6 +65,7 @@ typedef struct Dav1dSettings {
int operating_point; ///< select an operating point for scalable AV1 bitstreams (0 - 31)
int all_layers; ///< output all spatial layers of a scalable AV1 biststream
unsigned frame_size_limit; ///< maximum frame size, in pixels (0 = unlimited)
+ uint8_t reserved[32]; ///< reserved for future use
Dav1dPicAllocator allocator;
Dav1dLogger logger;
} Dav1dSettings;