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, 2 insertions, 2 deletions
diff --git a/libavcodec/huffman.h b/libavcodec/huffman.h
index 0b11af8b45..bfb772334a 100644
--- a/libavcodec/huffman.h
+++ b/libavcodec/huffman.h
@@ -35,8 +35,8 @@ typedef struct {
#define FF_HUFFMAN_FLAG_HNODE_FIRST 0x01
#define FF_HUFFMAN_FLAG_ZERO_COUNT 0x02
-typedef int (*huff_cmp_t)(const void *va, const void *vb);
+typedef int (*HuffCmp)(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 flags);
+ Node *nodes, HuffCmp cmp, int flags);
#endif /* AVCODEC_HUFFMAN_H */