diff options
author | Laurent Aimar <fenrir@videolan.org> | 2011-09-21 20:46:32 +0200 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2011-10-07 00:27:03 +0200 |
commit | 066fff755a5d8edc660c010ddb08474d208eeade (patch) | |
tree | 4465eef0c8459a1ebd1cf3c854f00af4c4113ffd /libavcodec/vp56.h | |
parent | 0ec6d6e9b682318b5b5b5457e09fbf3c4ca41335 (diff) | |
download | ffmpeg-066fff755a5d8edc660c010ddb08474d208eeade.tar.gz |
vp6: Check for huffman tree build errors
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
Diffstat (limited to 'libavcodec/vp56.h')
-rw-r--r-- | libavcodec/vp56.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index 8bb7251fc6..ceb516d88d 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -48,7 +48,7 @@ typedef void (*VP56Filter)(VP56Context *s, uint8_t *dst, uint8_t *src, typedef void (*VP56ParseCoeff)(VP56Context *s); typedef void (*VP56DefaultModelsInit)(VP56Context *s); typedef void (*VP56ParseVectorModels)(VP56Context *s); -typedef void (*VP56ParseCoeffModels)(VP56Context *s); +typedef int (*VP56ParseCoeffModels)(VP56Context *s); typedef int (*VP56ParseHeader)(VP56Context *s, const uint8_t *buf, int buf_size, int *golden_frame); |