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:
authorHenrik Gramner <gramner@twoorioles.com>2019-05-11 00:00:15 +0300
committerHenrik Gramner <henrik@gramner.com>2019-05-14 18:14:14 +0300
commit046188e48787b74717d921c58c46371ff2d00ea1 (patch)
treefe5ef158c545b713405bcda6f14ee6a15dad97e0 /include/dav1d/dav1d.h
parented35b5bac082b8dd9f1bf308c8eb32c5054a6dfa (diff)
Add an option to limit the maximum frame size
Diffstat (limited to 'include/dav1d/dav1d.h')
-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 f56cd15..ea97913 100644
--- a/include/dav1d/dav1d.h
+++ b/include/dav1d/dav1d.h
@@ -64,6 +64,7 @@ typedef struct Dav1dSettings {
int apply_grain;
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)
Dav1dPicAllocator allocator;
Dav1dLogger logger;
} Dav1dSettings;