~ubuntu-branches/ubuntu/trusty/gst-libav1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavcodec/huffman.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-09-24 17:07:00 UTC
  • mfrom: (1.1.17) (7.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20130924170700-4dg62s3pwl0pdakz
Tags: 1.2.0-1
* New upstream stable release:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#include "avcodec.h"
30
30
#include "get_bits.h"
31
31
 
32
 
typedef struct {
 
32
typedef struct Node {
33
33
    int16_t  sym;
34
34
    int16_t  n0;
35
35
    uint32_t count;
42
42
int ff_huff_build_tree(AVCodecContext *avctx, VLC *vlc, int nb_codes,
43
43
                       Node *nodes, HuffCmp cmp, int flags);
44
44
 
 
45
void ff_huff_gen_len_table(uint8_t *dst, const uint64_t *stats);
 
46
 
45
47
#endif /* AVCODEC_HUFFMAN_H */