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-02-16 01:49:08 +0300
committerJames Almer <jamrial@gmail.com>2019-02-17 17:41:48 +0300
commit6bf2a0c6cdf6b2062ba56efb34abc73a2b744b73 (patch)
tree8490f3a4d971c7c216a17088c97e4f60a0c37caa /include/dav1d/dav1d.h
parentd5171f95441276ebaba6ae24b340a822e12c4296 (diff)
headers: reorder and improve the doxy for some fields
Diffstat (limited to 'include/dav1d/dav1d.h')
-rw-r--r--include/dav1d/dav1d.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dav1d/dav1d.h b/include/dav1d/dav1d.h
index 04f8d5f..4f475dc 100644
--- a/include/dav1d/dav1d.h
+++ b/include/dav1d/dav1d.h
@@ -61,11 +61,11 @@ typedef struct Dav1dLogger {
typedef struct Dav1dSettings {
int n_frame_threads;
int n_tile_threads;
- Dav1dPicAllocator allocator;
- Dav1dLogger logger;
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
+ Dav1dPicAllocator allocator;
+ Dav1dLogger logger;
} Dav1dSettings;
/**