From c4bfa098072ba338d83555d6e2199f7e1e64ffff Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Tue, 16 Apr 2013 22:42:26 +0530 Subject: Add a WebP decoder Container and lossy decoding by Aneesh Dogra Lossless decoding by Justin Ruggles --- libavcodec/vp8.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'libavcodec/vp8.h') diff --git a/libavcodec/vp8.h b/libavcodec/vp8.h index 80f555f404..6555629806 100644 --- a/libavcodec/vp8.h +++ b/libavcodec/vp8.h @@ -269,4 +269,11 @@ typedef struct VP8Context { int mb_layout; } VP8Context; +int ff_vp8_decode_init(AVCodecContext *avctx); + +int ff_vp8_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, + AVPacket *avpkt); + +int ff_vp8_decode_free(AVCodecContext *avctx); + #endif /* AVCODEC_VP8_H */ -- cgit v1.2.3