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>2018-11-18 03:13:23 +0300
committerRonald S. Bultje <rsbultje@gmail.com>2018-11-25 21:38:31 +0300
commitc371907ffea1cafa9ee5867df4127a53b836d68f (patch)
tree4aea5ce670ccc2c1c5a35e029a63535c7b5f4612 /src/internal.h
parente071d257cae01c07d2204478dcc489200df66750 (diff)
Make frame_hdr a pointer
Diffstat (limited to 'src/internal.h')
-rw-r--r--src/internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/internal.h b/src/internal.h
index 1c825a2..0a3bdfe 100644
--- a/src/internal.h
+++ b/src/internal.h
@@ -79,7 +79,7 @@ struct Dav1dContext {
int n_tiles;
Dav1dRef *seq_hdr_ref;
Av1SequenceHeader *seq_hdr;
- Av1FrameHeader frame_hdr; // FIXME make ref?
+ Av1FrameHeader *frame_hdr, frame_hdr_mem; // FIXME make ref?
// decoded output picture queue
Dav1dData in;
@@ -125,7 +125,7 @@ struct Dav1dContext {
struct Dav1dFrameContext {
Dav1dRef *seq_hdr_ref;
Av1SequenceHeader *seq_hdr;
- Av1FrameHeader frame_hdr;
+ Av1FrameHeader *frame_hdr, frame_hdr_mem;
Dav1dThreadPicture refp[7];
Dav1dPicture cur; // during block coding / reconstruction
Dav1dThreadPicture sr_cur; // after super-resolution upscaling