summaryrefslogtreecommitdiff
path: root/libavcodec/cabac.h
diff options
context:
space:
mode:
authorJanne Grunau <janne-libav@jannau.net>2014-01-13 21:23:13 +0100
committerJanne Grunau <janne-libav@jannau.net>2014-01-14 22:19:03 +0100
commit8b4119187b62d6932e07aded11d33d3b24e1b42f (patch)
tree524d68cc25697f2723c883fe30a631816eeb0d8e /libavcodec/cabac.h
parentcc1e3ace63075ccd75ef3a2acdeb2e81cd8a429e (diff)
cabac: remove leftovers from the cabac encoder
The cabac encoder was only used by the removed cabac test. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r--libavcodec/cabac.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h
index 04495a6fe6..7401bc96a9 100644
--- a/libavcodec/cabac.h
+++ b/libavcodec/cabac.h
@@ -42,14 +42,11 @@
typedef struct CABACContext{
int low;
int range;
- int outstanding_count;
const uint8_t *bytestream_start;
const uint8_t *bytestream;
const uint8_t *bytestream_end;
- PutBitContext pb;
}CABACContext;
-void ff_init_cabac_encoder(CABACContext *c, uint8_t *buf, int buf_size);
void ff_init_cabac_decoder(CABACContext *c, const uint8_t *buf, int buf_size);
void ff_init_cabac_states(void);