HomeSort by relevance Sort by last modified time
    Searched defs:VP8BitWriter (Results 1 - 2 of 2) sorted by null

  /external/opencv3/3rdparty/libwebp/utils/
bit_writer.h 26 typedef struct VP8BitWriter VP8BitWriter;
27 struct VP8BitWriter {
39 int VP8BitWriterInit(VP8BitWriter* const bw, size_t expected_size);
41 uint8_t* VP8BitWriterFinish(VP8BitWriter* const bw);
44 void VP8BitWriterWipeOut(VP8BitWriter* const bw);
46 int VP8PutBit(VP8BitWriter* const bw, int bit, int prob);
47 int VP8PutBitUniform(VP8BitWriter* const bw, int bit);
48 void VP8PutValue(VP8BitWriter* const bw, int value, int nb_bits);
49 void VP8PutSignedValue(VP8BitWriter* const bw, int value, int nb_bits)
    [all...]
  /external/webp/src/utils/
bit_writer.h 26 typedef struct VP8BitWriter VP8BitWriter;
27 struct VP8BitWriter {
39 int VP8BitWriterInit(VP8BitWriter* const bw, size_t expected_size);
41 uint8_t* VP8BitWriterFinish(VP8BitWriter* const bw);
44 void VP8BitWriterWipeOut(VP8BitWriter* const bw);
46 int VP8PutBit(VP8BitWriter* const bw, int bit, int prob);
47 int VP8PutBitUniform(VP8BitWriter* const bw, int bit);
48 void VP8PutBits(VP8BitWriter* const bw, uint32_t value, int nb_bits);
49 void VP8PutSignedBits(VP8BitWriter* const bw, int value, int nb_bits)
    [all...]

Completed in 445 milliseconds