So move this self-documentation into a comment instead.
Originally committed as revision 10743 to svn://svn.ffmpeg.org/ffmpeg/trunk
/**
+ * nodes size must be 2*nb_codes
* first nb_codes nodes.count must be set
*/
int ff_huff_build_tree(AVCodecContext *avctx, VLC *vlc, int nb_codes,
- Node nodes[2*nb_codes], huff_cmp_t cmp, int hnode_first)
+ Node *nodes, huff_cmp_t cmp, int hnode_first)
{
int i, j;
int cur_node;
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[2*nb_codes], huff_cmp_t cmp, int hnode_first);
+ Node *nodes, huff_cmp_t cmp, int hnode_first);
#endif /* AVCODEC_HUFFMAN_H */