// Copyright 2011 Google Inc. All Rights Reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the COPYING file in the root of the source // tree. An additional intellectual property rights grant can be found // in the file PATENTS. All contributing project authors may // be found in the AUTHORS file in the root of the source tree. // ----------------------------------------------------------------------------- // // Bit writing and boolean coder // // Author: Skal ([email protected]) #ifndef WEBP_UTILS_BIT_WRITER_UTILS_H_ #define WEBP_UTILS_BIT_WRITER_UTILS_H_ #include "src/webp/types.h" #ifdef __cplusplus extern "C" { #endif //------------------------------------------------------------------------------ // Bit-writing VP8BitWriter; struct VP8BitWriter { … }; // Initialize the object. Allocates some initial memory based on expected_size. int VP8BitWriterInit(VP8BitWriter* const bw, size_t expected_size); // Finalize the bitstream coding. Returns a pointer to the internal buffer. uint8_t* VP8BitWriterFinish(VP8BitWriter* const bw); // Release any pending memory and zeroes the object. Not a mandatory call. // Only useful in case of error, when the internal buffer hasn't been grabbed! void VP8BitWriterWipeOut(VP8BitWriter* const bw); int VP8PutBit(VP8BitWriter* const bw, int bit, int prob); int VP8PutBitUniform(VP8BitWriter* const bw, int bit); void VP8PutBits(VP8BitWriter* const bw, uint32_t value, int nb_bits); void VP8PutSignedBits(VP8BitWriter* const bw, int value, int nb_bits); // Appends some bytes to the internal buffer. Data is copied. int VP8BitWriterAppend(VP8BitWriter* const bw, const uint8_t* data, size_t size); // return approximate write position (in bits) static WEBP_INLINE uint64_t VP8BitWriterPos(const VP8BitWriter* const bw) { … } // Returns a pointer to the internal buffer. static WEBP_INLINE uint8_t* VP8BitWriterBuf(const VP8BitWriter* const bw) { … } // Returns the size of the internal buffer. static WEBP_INLINE size_t VP8BitWriterSize(const VP8BitWriter* const bw) { … } //------------------------------------------------------------------------------ // VP8LBitWriter #if defined(__x86_64__) || defined(_M_X64) // 64bit vp8l_atype_t; // accumulator type vp8l_wtype_t; // writing type #define WSWAP … #define VP8L_WRITER_BYTES … #define VP8L_WRITER_BITS … #define VP8L_WRITER_MAX_BITS … #else typedef uint32_t vp8l_atype_t; typedef uint16_t vp8l_wtype_t; #define WSWAP … #define VP8L_WRITER_BYTES … #define VP8L_WRITER_BITS … #define VP8L_WRITER_MAX_BITS … #endif VP8LBitWriter; static WEBP_INLINE size_t VP8LBitWriterNumBytes(const VP8LBitWriter* const bw) { … } // Returns false in case of memory allocation error. int VP8LBitWriterInit(VP8LBitWriter* const bw, size_t expected_size); // Returns false in case of memory allocation error. int VP8LBitWriterClone(const VP8LBitWriter* const src, VP8LBitWriter* const dst); // Finalize the bitstream coding. Returns a pointer to the internal buffer. uint8_t* VP8LBitWriterFinish(VP8LBitWriter* const bw); // Release any pending memory and zeroes the object. void VP8LBitWriterWipeOut(VP8LBitWriter* const bw); // Resets the cursor of the BitWriter bw to when it was like in bw_init. void VP8LBitWriterReset(const VP8LBitWriter* const bw_init, VP8LBitWriter* const bw); // Swaps the memory held by two BitWriters. void VP8LBitWriterSwap(VP8LBitWriter* const src, VP8LBitWriter* const dst); // Internal function for VP8LPutBits flushing 32 bits from the written state. void VP8LPutBitsFlushBits(VP8LBitWriter* const bw); // PutBits internal function used in the 16 bit vp8l_wtype_t case. void VP8LPutBitsInternal(VP8LBitWriter* const bw, uint32_t bits, int n_bits); // This function writes bits into bytes in increasing addresses (little endian), // and within a byte least-significant-bit first. // This function can write up to 32 bits in one go, but VP8LBitReader can only // read 24 bits max (VP8L_MAX_NUM_BIT_READ). // VP8LBitWriter's error_ flag is set in case of memory allocation error. static WEBP_INLINE void VP8LPutBits(VP8LBitWriter* const bw, uint32_t bits, int n_bits) { … } //------------------------------------------------------------------------------ #ifdef __cplusplus } // extern "C" #endif #endif // WEBP_UTILS_BIT_WRITER_UTILS_H_