summaryrefslogtreecommitdiff
path: root/libavcodec/av1.h
diff options
context:
space:
mode:
authorFei Wang <fei.w.wang@intel.com>2020-09-02 15:31:28 +0800
committerJames Almer <jamrial@gmail.com>2020-09-02 12:33:02 -0300
commitbf6db5732ceb76bb2cca107ef297ad0104987a96 (patch)
treed5abdd6672438f404e20062e5abf9450a37e9e9f /libavcodec/av1.h
parent2a19232c1996fee52a3f4201fa379001627dcc89 (diff)
avcodec/cbs_av1: add missing frame restoration type enum values
Signed-off-by: Fei Wang <fei.w.wang@intel.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/av1.h')
-rw-r--r--libavcodec/av1.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/av1.h b/libavcodec/av1.h
index 6c0e32485b..0f99ae4829 100644
--- a/libavcodec/av1.h
+++ b/libavcodec/av1.h
@@ -160,4 +160,12 @@ enum {
AV1_SCALABILITY_L4T7_KEY_SHIFT = 28,
};
+// Frame Restoration types (section 6.10.15)
+enum {
+ AV1_RESTORE_NONE = 0,
+ AV1_RESTORE_WIENER = 1,
+ AV1_RESTORE_SGRPROJ = 2,
+ AV1_RESTORE_SWITCHABLE = 3,
+};
+
#endif /* AVCODEC_AV1_H */