summaryrefslogtreecommitdiff
path: root/libavcodec/vp9dec.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-03-23 16:09:48 +0100
committerAnton Khirnov <anton@khirnov.net>2020-05-12 09:37:47 +0200
commitffae62d96c75d4a476eb3890357c4f3e4f8bd4f5 (patch)
tree3057751fe52a1b473d67926341d4b39713695341 /libavcodec/vp9dec.h
parentc90f57c6736a11670a0fcf25ed4280062246fb02 (diff)
downloadffmpeg-ffae62d96c75d4a476eb3890357c4f3e4f8bd4f5.tar.gz
vp9dec: support exporting QP tables through the AVVideoEncParams API
Diffstat (limited to 'libavcodec/vp9dec.h')
-rw-r--r--libavcodec/vp9dec.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/vp9dec.h b/libavcodec/vp9dec.h
index e203666bb4..cc2440b854 100644
--- a/libavcodec/vp9dec.h
+++ b/libavcodec/vp9dec.h
@@ -226,6 +226,13 @@ struct VP9TileData {
// error message
int error_info;
+ struct {
+ unsigned int row:13;
+ unsigned int col:13;
+ unsigned int block_size_idx_x:2;
+ unsigned int block_size_idx_y:2;
+ } *block_structure;
+ unsigned int nb_block_structure;
};
void ff_vp9_fill_mv(VP9TileData *td, VP56mv *mv, int mode, int sb);