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-05 00:19:24 +0300
committerJanne Grunau <janne-vlc@jannau.net>2018-11-07 01:02:21 +0300
commit704a5252e43765bc3383d53c63e0ae4cde57d720 (patch)
treeccadb25095b20dcb128c36c7e86001f0a3f84b35 /src/recon.h
parent6f979f815bb9256aa4e71f493c71f70dd94ced2f (diff)
frame threading: signal reference frame decoding errors
Fixes #127
Diffstat (limited to 'src/recon.h')
-rw-r--r--src/recon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/recon.h b/src/recon.h
index 842e541..36112b1 100644
--- a/src/recon.h
+++ b/src/recon.h
@@ -42,7 +42,7 @@ void (name)(Dav1dTileContext *t, enum BlockSize bs, \
typedef decl_recon_b_intra_fn(*recon_b_intra_fn);
#define decl_recon_b_inter_fn(name) \
-void (name)(Dav1dTileContext *t, enum BlockSize bs, const Av1Block *b)
+int (name)(Dav1dTileContext *t, enum BlockSize bs, const Av1Block *b)
typedef decl_recon_b_inter_fn(*recon_b_inter_fn);
#define decl_filter_sbrow_fn(name) \