diff options
author | Laurent Aimar <fenrir@videolan.org> | 2011-09-21 20:46:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-22 00:42:28 +0200 |
commit | 7c249d4fbaf4431b20a90a3c942f3370c0039d9e (patch) | |
tree | ff9335781727dfa35d719990bde022fbed86a4ea /libavcodec/vp56.h | |
parent | dba20b84784a7931b7eac50ced1d43e86801bde9 (diff) | |
download | ffmpeg-7c249d4fbaf4431b20a90a3c942f3370c0039d9e.tar.gz |
Check for huffman tree building error in vp6 decoder.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 b982435156..7d411f400c 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); |