Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dboolhuff.h38 } BOOL_CODER; typedef
40 extern void vp8_start_encode(BOOL_CODER *bc, unsigned char *buffer, unsigned char *buffer_end);
42 extern void vp8_encode_value(BOOL_CODER *br, int data, int bits);
43 extern void vp8_stop_encode(BOOL_CODER *bc);
62 static void vp8_encode_bool(BOOL_CODER *br, int bit, int probability) in vp8_encode_bool()
Dboolhuff.c43 void vp8_start_encode(BOOL_CODER *br, unsigned char *source, unsigned char *source_end) in vp8_start_encode()
54 void vp8_stop_encode(BOOL_CODER *br) in vp8_stop_encode()
63 void vp8_encode_value(BOOL_CODER *br, int data, int bits) in vp8_encode_value()
Dtreewriter.h27 typedef BOOL_CODER vp8_writer;
Dencodeframe.c745 BOOL_CODER * bc = &cpi->bc[1]; /* bc[0] is for control partition */ in vp8_encode_frame()
/external/libvpx/libvpx/test/
Dvp8_boolcoder_test.cc80 BOOL_CODER bw; in TEST()