comparison huffman.h @ 5824:6ac956b341f2 libavcodec

Cygwin don't like this function declaration. So move this self-documentation into a comment instead.
author aurel
date Mon, 15 Oct 2007 21:41:01 +0000
parents ffac546a3861
children 1d83e9c34641
comparison
equal deleted inserted replaced
5823:4beef9d0e663 5824:6ac956b341f2
31 uint32_t count; 31 uint32_t count;
32 } Node; 32 } Node;
33 33
34 typedef int (*huff_cmp_t)(const void *va, const void *vb); 34 typedef int (*huff_cmp_t)(const void *va, const void *vb);
35 int ff_huff_build_tree(AVCodecContext *avctx, VLC *vlc, int nb_codes, 35 int ff_huff_build_tree(AVCodecContext *avctx, VLC *vlc, int nb_codes,
36 Node nodes[2*nb_codes], huff_cmp_t cmp, int hnode_first); 36 Node *nodes, huff_cmp_t cmp, int hnode_first);
37 37
38 #endif /* AVCODEC_HUFFMAN_H */ 38 #endif /* AVCODEC_HUFFMAN_H */