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-09-01 18:18:46 +0300
committerRonald S. Bultje <rsbultje@gmail.com>2019-09-10 21:20:38 +0300
commitb9d4630c6dfb9bfeac7c3fa5aa59217670595f7b (patch)
treee73b18b80b4607c0fb7d686a6d12416341b05639 /src/internal.h
parent79c4aa95cd1f0fd849e130aa282c632d51fb70da (diff)
Split out film grain block functions into a DSPContext
Diffstat (limited to 'src/internal.h')
-rw-r--r--src/internal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/internal.h b/src/internal.h
index 785c9b8..24e7c61 100644
--- a/src/internal.h
+++ b/src/internal.h
@@ -42,6 +42,7 @@ typedef struct Dav1dTileContext Dav1dTileContext;
#include "src/cdf.h"
#include "src/data.h"
#include "src/env.h"
+#include "src/film_grain.h"
#include "src/intra_edge.h"
#include "src/ipred.h"
#include "src/itx.h"
@@ -57,6 +58,7 @@ typedef struct Dav1dTileContext Dav1dTileContext;
#include "src/thread.h"
typedef struct Dav1dDSPContext {
+ Dav1dFilmGrainDSPContext fg;
Dav1dIntraPredDSPContext ipred;
Dav1dMCDSPContext mc;
Dav1dInvTxfmDSPContext itx;