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>2020-03-07 19:49:27 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2020-03-07 20:15:23 +0300
commitecc5078cec3df5a9974e8d90f89eed96cb3494a1 (patch)
tree21afb1d805cbaaa35d7c91bc3aef56321deb77bc /include
parenta73742326173fd60bf8d398f78420be77bf330d4 (diff)
headers: add missing doxy to some Dav1dSettings fields
Diffstat (limited to 'include')
-rw-r--r--include/dav1d/dav1d.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/dav1d/dav1d.h b/include/dav1d/dav1d.h
index e637fc9..1b0e6a0 100644
--- a/include/dav1d/dav1d.h
+++ b/include/dav1d/dav1d.h
@@ -49,7 +49,7 @@ typedef struct Dav1dRef Dav1dRef;
typedef struct Dav1dLogger {
void *cookie; ///< Custom data to pass to the callback.
/**
- * Logger callback. Default prints to stderr. May be NULL to disable logging.
+ * Logger callback.
*
* @param cookie Custom pointer passed to all calls.
* @param format The vprintf compatible format string.
@@ -66,8 +66,8 @@ typedef struct Dav1dSettings {
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;
+ Dav1dPicAllocator allocator; ///< Picture allocator callback.
+ Dav1dLogger logger; ///< Logger callback. May be set to NULL to disable logging.
} Dav1dSettings;
/**