summaryrefslogtreecommitdiff
path: root/libavcodec/vp9dec.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2017-03-27 16:59:06 -0400
committerRonald S. Bultje <rsbultje@gmail.com>2017-03-28 18:04:26 -0400
commitb823bbc10cc7b8674bb2dea50bd5dfc081e28620 (patch)
treed854c3831459255d6477f5b885d83d9d054b4895 /libavcodec/vp9dec.h
parentf8c019944d45f4ea9786f8690f8a64fd9398ebf3 (diff)
vp9: split out loopfilter functions in their own source file.
Diffstat (limited to 'libavcodec/vp9dec.h')
-rw-r--r--libavcodec/vp9dec.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vp9dec.h b/libavcodec/vp9dec.h
index ba821f3a5f..1f3348adb1 100644
--- a/libavcodec/vp9dec.h
+++ b/libavcodec/vp9dec.h
@@ -203,4 +203,7 @@ void ff_vp9_decode_block(AVCodecContext *ctx, int row, int col,
VP9Filter *lflvl, ptrdiff_t yoff, ptrdiff_t uvoff,
enum BlockLevel bl, enum BlockPartition bp);
+void ff_vp9_loopfilter_sb(AVCodecContext *avctx, VP9Filter *lflvl,
+ int row, int col, ptrdiff_t yoff, ptrdiff_t uvoff);
+
#endif /* AVCODEC_VP9DEC_H */