~ubuntu-branches/ubuntu/utopic/ffmpeg-debian/utopic

« back to all changes in this revision

Viewing changes to libavcodec/huffman.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 09:20:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120092053-izz63p40hc98qfgp
Tags: 3:0.svn20090119-1ubuntu1
* merge from debian. LP: #318501
* new version fixes CVE-2008-3230, LP: #253767

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#define FF_HUFFMAN_FLAG_HNODE_FIRST 0x01
36
36
#define FF_HUFFMAN_FLAG_ZERO_COUNT  0x02
37
37
 
38
 
typedef int (*huff_cmp_t)(const void *va, const void *vb);
 
38
typedef int (*HuffCmp)(const void *va, const void *vb);
39
39
int ff_huff_build_tree(AVCodecContext *avctx, VLC *vlc, int nb_codes,
40
 
                       Node *nodes, huff_cmp_t cmp, int flags);
 
40
                       Node *nodes, HuffCmp cmp, int flags);
41
41
 
42
42
#endif /* AVCODEC_HUFFMAN_H */