OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VP8LBitWriter
(Results
1 - 5
of
5
) sorted by null
/external/webp/src/utils/
bit_writer.h
68
//
VP8LBitWriter
69
// TODO(vikasa):
VP8LBitWriter
is copied as-is from lossless code. There's scope
83
}
VP8LBitWriter
;
85
static WEBP_INLINE size_t VP8LBitWriterNumBytes(
VP8LBitWriter
* const bw) {
89
static WEBP_INLINE uint8_t* VP8LBitWriterFinish(
VP8LBitWriter
* const bw) {
94
int VP8LBitWriterInit(
VP8LBitWriter
* const bw, size_t expected_size);
96
void VP8LBitWriterDestroy(
VP8LBitWriter
* const bw);
114
//
VP8LBitWriter
's error_ flag is set in case of memory allocation error.
115
void VP8LWriteBits(
VP8LBitWriter
* const bw, int n_bits, uint32_t bits);
bit_writer.c
194
//
VP8LBitWriter
197
static int VP8LBitWriterResize(
VP8LBitWriter
* const bw, size_t extra_size) {
225
int VP8LBitWriterInit(
VP8LBitWriter
* const bw, size_t expected_size) {
230
void VP8LBitWriterDestroy(
VP8LBitWriter
* const bw) {
237
void VP8LWriteBits(
VP8LBitWriter
* const bw, int n_bits, uint32_t bits) {
/external/webp/src/enc/
vp8li.h
60
VP8LBitWriter
* const bw);
vp8l.c
244
VP8LBitWriter
* const bw, const uint8_t* code_length_bitdepth) {
282
VP8LBitWriter
* const bw,
304
static int StoreFullHuffmanCode(
VP8LBitWriter
* const bw,
374
static int StoreHuffmanCode(
VP8LBitWriter
* const bw,
413
static void WriteHuffmanCode(
VP8LBitWriter
* const bw,
422
VP8LBitWriter
* const bw, int width, int histo_bits,
470
static int EncodeImageNoHuffman(
VP8LBitWriter
* const bw,
517
static int EncodeImageInternal(
VP8LBitWriter
* const bw,
640
VP8LBitWriter
* const bw) {
679
VP8LBitWriter
* const bw)
[
all
...]
alpha.c
56
VP8LBitWriter
tmp_bw;
Completed in 48 milliseconds