summaryrefslogtreecommitdiff
path: root/libavcodec/huffman.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/huffman.h')
-rw-r--r--libavcodec/huffman.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/huffman.h b/libavcodec/huffman.h
index 57fbefa1e9..0b6ff407b9 100644
--- a/libavcodec/huffman.h
+++ b/libavcodec/huffman.h
@@ -32,8 +32,10 @@ typedef struct {
uint32_t count;
} Node;
+#define FF_HUFFMAN_FLAG_HNODE_FIRST 0x01
+
typedef int (*huff_cmp_t)(const void *va, const void *vb);
int ff_huff_build_tree(AVCodecContext *avctx, VLC *vlc, int nb_codes,
- Node *nodes, huff_cmp_t cmp, int hnode_first);
+ Node *nodes, huff_cmp_t cmp, int flags);
#endif /* FFMPEG_HUFFMAN_H */