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:
authorRonald S. Bultje <rsbultje@gmail.com>2019-11-16 22:45:39 +0300
committerRonald S. Bultje <rsbultje@gmail.com>2019-11-21 20:12:57 +0300
commit4bf52cb5f211772d3755b8219b635d04f767d979 (patch)
tree9a74007548c93b6f8a39255974a28706166b0541 /include/dav1d
parent7f30c67f1798fc3562ab8520dad6333573a02b71 (diff)
Make OBU_* types public
Diffstat (limited to 'include/dav1d')
-rw-r--r--include/dav1d/headers.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/dav1d/headers.h b/include/dav1d/headers.h
index 638a7c9..4e3bf9e 100644
--- a/include/dav1d/headers.h
+++ b/include/dav1d/headers.h
@@ -41,6 +41,17 @@
#define DAV1D_REFS_PER_FRAME 7
#define DAV1D_TOTAL_REFS_PER_FRAME (DAV1D_REFS_PER_FRAME + 1)
+enum Dav1dObuType {
+ DAV1D_OBU_SEQ_HDR = 1,
+ DAV1D_OBU_TD = 2,
+ DAV1D_OBU_FRAME_HDR = 3,
+ DAV1D_OBU_TILE_GRP = 4,
+ DAV1D_OBU_METADATA = 5,
+ DAV1D_OBU_FRAME = 6,
+ DAV1D_OBU_REDUNDANT_FRAME_HDR = 7,
+ DAV1D_OBU_PADDING = 15,
+};
+
enum Dav1dTxfmMode {
DAV1D_TX_4X4_ONLY,
DAV1D_TX_LARGEST,