diff huffman.h @ 8299:524cb7f5ad2b libavcodec

avoid POSIX reserved _t suffix
author aurel
date Thu, 11 Dec 2008 22:56:19 +0000
parents c4a4495715dd
children e9d9d946f213
line wrap: on
line diff
--- a/huffman.h	Thu Dec 11 22:34:14 2008 +0000
+++ b/huffman.h	Thu Dec 11 22:56:19 2008 +0000
@@ -35,8 +35,8 @@
 #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 */