From bac02ed3c5004f4944cdeb97c4341925196b50d8 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Sat, 8 Mar 2008 17:57:13 +0000 Subject: huffman: pass hnode_first as a flag instead of as an argument on its own Originally committed as revision 12373 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp6.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libavcodec/vp6.c') diff --git a/libavcodec/vp6.c b/libavcodec/vp6.c index 26943e564f..1b59ecd078 100644 --- a/libavcodec/vp6.c +++ b/libavcodec/vp6.c @@ -224,7 +224,8 @@ static void vp6_build_huff_tree(vp56_context_t *s, uint8_t coeff_model[], } /* then build the huffman tree accodring to probabilities */ - ff_huff_build_tree(s->avctx, vlc, size, nodes, vp6_huff_cmp, 1); + ff_huff_build_tree(s->avctx, vlc, size, nodes, vp6_huff_cmp, + FF_HUFFMAN_FLAG_HNODE_FIRST); } static void vp6_parse_coeff_models(vp56_context_t *s) -- cgit v1.2.3