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/dav1d/headers.h
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/dav1d/headers.h')
-rw-r--r--include/dav1d/headers.h3
1 files changed, 2 insertions, 1 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;