Home
last modified time | relevance | path

Searched refs:BOOL_CODER (Results 1 – 5 of 5) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dboolhuff.h36 } BOOL_CODER; typedef
38 void vp8_start_encode(BOOL_CODER *bc, unsigned char *source,
41 void vp8_encode_value(BOOL_CODER *bc, int data, int bits);
42 void vp8_stop_encode(BOOL_CODER *bc);
59 static void vp8_encode_bool(BOOL_CODER *bc, int bit, int probability) { in vp8_encode_bool()
Dboolhuff.c41 void vp8_start_encode(BOOL_CODER *bc, unsigned char *source, in vp8_start_encode()
51 void vp8_stop_encode(BOOL_CODER *bc) { in vp8_stop_encode()
57 void vp8_encode_value(BOOL_CODER *bc, int data, int bits) { in vp8_encode_value()
Dtreewriter.h26 typedef BOOL_CODER vp8_writer;
Dencodeframe.c675 BOOL_CODER *bc = &cpi->bc[1]; /* bc[0] is for control partition */ in vp8_encode_frame()
/external/libvpx/libvpx/test/
Dvp8_boolcoder_test.cc81 BOOL_CODER bw; in TEST()