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

  /external/opencv3/3rdparty/libwebp/utils/
bit_writer.h 70 // VP8LBitWriter
71 // TODO(vikasa): VP8LBitWriter is copied as-is from lossless code. There's scope
85 } VP8LBitWriter;
87 static WEBP_INLINE size_t VP8LBitWriterNumBytes(VP8LBitWriter* const bw) {
91 static WEBP_INLINE uint8_t* VP8LBitWriterFinish(VP8LBitWriter* const bw) {
96 int VP8LBitWriterInit(VP8LBitWriter* const bw, size_t expected_size);
98 void VP8LBitWriterDestroy(VP8LBitWriter* const bw);
116 // VP8LBitWriter's error_ flag is set in case of memory allocation error.
117 void VP8LWriteBits(VP8LBitWriter* const bw, int n_bits, uint32_t bits);
  /external/webp/src/utils/
bit_writer.h 70 // VP8LBitWriter
100 } VP8LBitWriter;
102 static WEBP_INLINE size_t VP8LBitWriterNumBytes(VP8LBitWriter* const bw) {
107 int VP8LBitWriterInit(VP8LBitWriter* const bw, size_t expected_size);
109 uint8_t* VP8LBitWriterFinish(VP8LBitWriter* const bw);
111 void VP8LBitWriterWipeOut(VP8LBitWriter* const bw);
114 void VP8LPutBitsFlushBits(VP8LBitWriter* const bw);
117 void VP8LPutBitsInternal(VP8LBitWriter* const bw, uint32_t bits, int n_bits);
123 // VP8LBitWriter's error_ flag is set in case of memory allocation error.
124 static WEBP_INLINE void VP8LPutBits(VP8LBitWriter* const bw
    [all...]

Completed in 108 milliseconds