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:
authorJames Almer <jamrial@gmail.com>2018-11-08 20:32:31 +0300
committerJames Almer <jamrial@gmail.com>2018-11-14 03:13:27 +0300
commit026069693ef5511368e105cc177f72c917e0f3a9 (patch)
tree5368c3ba550e8913c7052dd9f9232a8f9f5456a0 /src/internal.h
parentec53ec6d5b4ebbb06d5c7209fd4f25634a6ad606 (diff)
implement a decoupled decode API
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 9988879..4ab49b1 100644
--- a/src/internal.h
+++ b/src/internal.h
@@ -40,6 +40,7 @@ typedef struct Dav1dTileContext Dav1dTileContext;
#include "src/cdef.h"
#include "src/cdf.h"
+#include "src/data.h"
#include "src/env.h"
#include "src/intra_edge.h"
#include "src/ipred.h"
@@ -80,6 +81,7 @@ struct Dav1dContext {
Av1FrameHeader frame_hdr; // FIXME make ref?
// decoded output picture queue
+ Dav1dData in;
Dav1dPicture out;
struct {
Dav1dThreadPicture *out_delayed;