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:
authorJanne Grunau <janne-vlc@jannau.net>2018-11-04 21:48:19 +0300
committerJanne Grunau <janne-vlc@jannau.net>2018-11-04 21:51:33 +0300
commitef677d6aa184c8954dc4de78919262dd18348fa0 (patch)
tree7a72ded097ddafcbb5d3f6923771d88749235730 /src/internal.h
parente0c3186e65aeafa2853b275dfb534b5a274fab12 (diff)
calculate and cache the picture dimension in 4x4 blocks
Diffstat (limited to 'src/internal.h')
-rw-r--r--src/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal.h b/src/internal.h
index aa1f741..ec0d050 100644
--- a/src/internal.h
+++ b/src/internal.h
@@ -149,7 +149,7 @@ struct Dav1dFrameContext {
int ipred_edge_sz;
pixel *ipred_edge[3];
ptrdiff_t b4_stride;
- int bw, bh, sb128w, sb128h, sbh, sb_shift, sb_step;
+ int w4, h4, bw, bh, sb128w, sb128h, sbh, sb_shift, sb_step;
uint16_t dq[NUM_SEGMENTS][3 /* plane */][2 /* dc/ac */];
const uint8_t *qm[2 /* is_1d */][N_RECT_TX_SIZES][3 /* plane */];
BlockContext *a;