summaryrefslogtreecommitdiff
path: root/libavcodec/vp9dec.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2017-03-27 17:32:20 -0400
committerRonald S. Bultje <rsbultje@gmail.com>2017-03-28 18:04:26 -0400
commit6d0d1c4a43f5e5fc195226367fd1c49843d25d71 (patch)
tree31b7fd91dc158ea57d02a94b6f1f95fcbaaf29d5 /libavcodec/vp9dec.h
parentb823bbc10cc7b8674bb2dea50bd5dfc081e28620 (diff)
downloadffmpeg-6d0d1c4a43f5e5fc195226367fd1c49843d25d71.tar.gz
vp9: split out reconstruction functions in their own source file.
Diffstat (limited to 'libavcodec/vp9dec.h')
-rw-r--r--libavcodec/vp9dec.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/vp9dec.h b/libavcodec/vp9dec.h
index 1f3348adb1..f05e478a4a 100644
--- a/libavcodec/vp9dec.h
+++ b/libavcodec/vp9dec.h
@@ -206,4 +206,11 @@ void ff_vp9_decode_block(AVCodecContext *ctx, int row, int col,
void ff_vp9_loopfilter_sb(AVCodecContext *avctx, VP9Filter *lflvl,
int row, int col, ptrdiff_t yoff, ptrdiff_t uvoff);
+void ff_vp9_intra_recon_8bpp(AVCodecContext *avctx,
+ ptrdiff_t y_off, ptrdiff_t uv_off);
+void ff_vp9_intra_recon_16bpp(AVCodecContext *avctx,
+ ptrdiff_t y_off, ptrdiff_t uv_off);
+void ff_vp9_inter_recon_8bpp(AVCodecContext *avctx);
+void ff_vp9_inter_recon_16bpp(AVCodecContext *avctx);
+
#endif /* AVCODEC_VP9DEC_H */