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:
authorHenrik Gramner <gramner@twoorioles.com>2018-10-05 16:33:35 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2018-10-05 19:38:18 +0300
commitbb505b3e7bbd23e67531ce82059845b2d83cdbe9 (patch)
treef80e9683cce8492d836f57fa31d8ca481626a8bb /src/decode.c
parent7e693a1d26779acf8e21378a898c25ab35f2bcac (diff)
Intra prediction DSP refactoring
Also remove some redundant clips in DC pred.
Diffstat (limited to 'src/decode.c')
-rw-r--r--src/decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decode.c b/src/decode.c
index 0153cbb..99c70ab 100644
--- a/src/decode.c
+++ b/src/decode.c
@@ -2713,7 +2713,7 @@ int dav1d_submit_frame(Dav1dContext *const c) {
const int bd_idx = (f->seq_hdr.bpc - 8) >> 1;
f->dsp = &c->dsp[bd_idx];
- if (!f->dsp->ipred.intra_pred[TX_4X4][DC_PRED]) {
+ if (!f->dsp->ipred.intra_pred[DC_PRED]) {
Dav1dDSPContext *const dsp = &c->dsp[bd_idx];
switch (f->seq_hdr.bpc) {