From f28b10483accd131125752e45160508b260ca9ac Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Sun, 14 Oct 2007 22:30:59 +0000 Subject: add support for VP6 with huffman encoded blocks closes issue 104 Originally committed as revision 10737 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp6data.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'libavcodec/vp6data.h') diff --git a/libavcodec/vp6data.h b/libavcodec/vp6data.h index 083c3fd482..70bf1b88c4 100644 --- a/libavcodec/vp6data.h +++ b/libavcodec/vp6data.h @@ -297,4 +297,12 @@ static const vp56_tree_t vp6_pcr_tree[] = { static const uint8_t vp6_coord_div[] = { 4, 4, 4, 4, 8, 8 }; +static const uint8_t vp6_huff_coeff_map[] = { + 13, 14, 11, 0, 1, 15, 16, 18, 2, 17, 3, 4, 19, 20, 5, 6, 21, 22, 7, 8, 9, 10 +}; + +static const uint8_t vp6_huff_run_map[] = { + 10, 13, 11, 12, 0, 1, 2, 3, 14, 8, 15, 16, 4, 5, 6, 7 +}; + #endif /* VP6DATA_H */ -- cgit v1.2.3