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:47:33 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2020-03-07 20:15:23 +0300
commita73742326173fd60bf8d398f78420be77bf330d4 (patch)
tree3bb7930f3f796e41754cd7c278cc52af08ff81eb /include
parentacfbd09b7bbdcc3185d11560de52727a715b6bae (diff)
headers: split some public fields into separate lines and document them
The description was being added only to the last field of each line by Doxygen.
Diffstat (limited to 'include')
-rw-r--r--include/dav1d/headers.h3
-rw-r--r--include/dav1d/picture.h7
2 files changed, 7 insertions, 3 deletions
diff --git a/include/dav1d/headers.h b/include/dav1d/headers.h
index b0c5be7..d7e8a2b 100644
--- a/include/dav1d/headers.h
+++ b/include/dav1d/headers.h
@@ -336,7 +336,8 @@ typedef struct Dav1dFrameHeader {
enum Dav1dFrameType frame_type; ///< type of the picture
int width[2 /* { coded_width, superresolution_upscaled_width } */], height;
int frame_offset; ///< frame number
- int temporal_id, spatial_id; ///< spatial and temporal id of the frame for SVC
+ int temporal_id; ///< temporal id of the frame for SVC
+ int spatial_id; ///< spatial id of the frame for SVC
int show_existing_frame;
int existing_frame_idx;
diff --git a/include/dav1d/picture.h b/include/dav1d/picture.h
index 08746f3..98e5eb5 100644
--- a/include/dav1d/picture.h
+++ b/include/dav1d/picture.h
@@ -84,8 +84,11 @@ typedef struct Dav1dPicture {
uintptr_t reserved[4]; ///< reserved for future use
- struct Dav1dRef *frame_hdr_ref, *seq_hdr_ref; ///< Frame parameter allocation origins
- struct Dav1dRef *content_light_ref, *mastering_display_ref, *itut_t35_ref; ///< Metadata allocation origins
+ struct Dav1dRef *frame_hdr_ref; ///< Dav1dFrameHeader allocation origin
+ struct Dav1dRef *seq_hdr_ref; ///< Dav1dSequenceHeader allocation origin
+ struct Dav1dRef *content_light_ref; ///< Dav1dContentLightLevel allocation origin
+ struct Dav1dRef *mastering_display_ref; ///< Dav1dMasteringDisplay allocation origin
+ struct Dav1dRef *itut_t35_ref; ///< Dav1dITUTT35 allocation origin
uintptr_t reserved_ref[4]; ///< reserved for future use
struct Dav1dRef *ref; ///< Frame data allocation origin