/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/ |
armCOMM_BitDec_s.h | 88 GBLS BitBuffer ;// Register name for BitBuffer 97 ;// pBitStream - points to the first byte not held in the BitBuffer 98 ;// BitBuffer - is a cache of (4 bytes) 32 bits, bit 31 the first bit 100 ;// 0<=BitCount<=15 (so BitBuffer holds at least 17 unused bits) 115 ;// $RBitBuffer - register to use for BitBuffer 123 ;// $BitBuffer } See description above. 130 BitBuffer SETS "$RBitBuffer" 142 LDRB $BitBuffer, [$pBitStream], #3 149 ORR $BitBuffer, $T2, $BitBuffer, LSL #1 [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/ |
armCOMM_BitDec_s.h | 88 GBLS BitBuffer ;// Register name for BitBuffer 97 ;// pBitStream - points to the first byte not held in the BitBuffer 98 ;// BitBuffer - is a cache of (4 bytes) 32 bits, bit 31 the first bit 100 ;// 0<=BitCount<=15 (so BitBuffer holds at least 17 unused bits) 115 ;// $RBitBuffer - register to use for BitBuffer 123 ;// $BitBuffer } See description above. 130 BitBuffer SETS "$RBitBuffer" 142 LDRB $BitBuffer, [$pBitStream], #3 149 ORR $BitBuffer, $T2, $BitBuffer, LSL #1 [all...] |
/external/webrtc/webrtc/base/ |
bitbuffer.cc | 11 #include "webrtc/base/bitbuffer.h" 76 BitBuffer::BitBuffer(const uint8_t* bytes, size_t byte_count) 82 uint64_t BitBuffer::RemainingBitCount() const { 86 bool BitBuffer::ReadUInt8(uint8_t* val) { 96 bool BitBuffer::ReadUInt16(uint16_t* val) { 106 bool BitBuffer::ReadUInt32(uint32_t* val) { 110 bool BitBuffer::PeekBits(uint32_t* val, size_t bit_count) { 140 bool BitBuffer::ReadBits(uint32_t* val, size_t bit_count) { 144 bool BitBuffer::ConsumeBytes(size_t byte_count) [all...] |
bitbuffer.h | 28 class BitBuffer { 30 BitBuffer(const uint8_t* bytes, size_t byte_count); 88 RTC_DISALLOW_COPY_AND_ASSIGN(BitBuffer); 91 // A BitBuffer API for write operations. Supports symmetric write APIs to the 92 // reading APIs of BitBuffer. Note that the read/write offset is shared with the 93 // BitBuffer API, so both reading and writing will consume bytes/bits. 94 class BitBufferWriter : public BitBuffer {
|
bitbuffer_unittest.cc | 12 #include "webrtc/base/bitbuffer.h" 21 BitBuffer buffer(bytes, 32); 46 BitBuffer buffer(bytes, 8); 63 BitBuffer buffer(bytes, 9); 98 BitBuffer buffer(bytes, 8); 117 BitBuffer buffer(bytes, 2); 193 BitBuffer buffer(reinterpret_cast<const uint8_t*>(byteBuffer.Data()), 220 BitBuffer buffer(&golomb_bits[i], 1); 233 BitBuffer buffer(bytes, 1); 237 BitBuffer longer_buffer(bytes, 2) [all...] |
BUILD.gn | 108 "bitbuffer.cc", 109 "bitbuffer.h",
|
base.gyp | 74 'bitbuffer.cc', 75 'bitbuffer.h',
|
/external/aac/libFDK/include/ |
FDK_bitstream.h | 87 Description: bitstream interface to bitbuffer routines 124 * \param pBuffer Pointer to BitBuffer array. 125 * \param bufSize Length of BitBuffer array. (awaits size 2^n) 145 * \brief Initialize BistreamBuffer. BitBuffer can point to filled BitBuffer array . 148 * \param pBuffer Pointer to BitBuffer array. 149 * \param bufSize Length of BitBuffer array. (awaits size 2^n) 150 * \param validBits Number of valid BitBuffer filled Bits. 170 * \brief ResetBitbuffer Function. Reset states in BitBuffer and Cache. 188 Deletes the in Create Bitstream allocated BitStream and BitBuffer [all...] |
FDK_bitbuffer.h | 87 Description: common bitbuffer read/write routines 120 /** The BitBuffer Functions are called straight from FDK_bitstream Interface.
|
/frameworks/av/media/libstagefright/codecs/aacenc/inc/ |
bitbuffer.h | 17 File: bitbuffer.h 59 Word16 size; /*!< size of bitbuffer in bits */
|
bit_cnt.h | 26 #include "bitbuffer.h"
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
bitbuffer.c | 17 File: bitbuffer.c 23 #include "bitbuffer.h"
|
/external/unicode/ |
CVTUTF7.C | 78 #define DECLARE_BIT_BUFFER register unsigned long BITbuffer = 0, buffertemp = 0; int bufferbits = 0 80 #define WRITE_N_BITS(x, n) ((BITbuffer |= ( ((x) & ~(-1L<<(n))) << (32-(n)-bufferbits) ) ), bufferbits += (n) ) 81 #define READ_N_BITS(n) ((buffertemp = (BITbuffer >> (32-(n)))), (BITbuffer <<= (n)), (bufferbits -= (n)), buffertemp)
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
h264_bitstream_parser.h | 18 class BitBuffer;
|
h264_sps_parser.cc | 13 #include "webrtc/base/bitbuffer.h" 65 rtc::BitBuffer parser(reinterpret_cast<const uint8_t*>(rbsp_buffer.Data()),
|
rtp_format_vp9.cc | 18 #include "webrtc/base/bitbuffer.h" 312 bool ParsePictureId(rtc::BitBuffer* parser, RTPVideoHeaderVP9* vp9) { 333 bool ParseLayerInfoCommon(rtc::BitBuffer* parser, RTPVideoHeaderVP9* vp9) { 354 bool ParseLayerInfoNonFlexibleMode(rtc::BitBuffer* parser, 362 bool ParseLayerInfo(rtc::BitBuffer* parser, RTPVideoHeaderVP9* vp9) { 379 bool ParseRefIndices(rtc::BitBuffer* parser, RTPVideoHeaderVP9* vp9) { 425 bool ParseSsData(rtc::BitBuffer* parser, RTPVideoHeaderVP9* vp9) { 676 rtc::BitBuffer parser(payload, payload_length);
|
h264_bitstream_parser.cc | 14 #include "webrtc/base/bitbuffer.h" 68 // TODO(pbos): Make parsing RBSP something that can be integrated into BitBuffer 108 rtc::BitBuffer sps_parser(reinterpret_cast<const uint8_t*>(sps_rbsp->Data()), 214 rtc::BitBuffer parser(reinterpret_cast<const uint8_t*>(buffer->Data()), 322 rtc::BitBuffer slice_reader(
|
/external/guava/guava/src/com/google/common/io/ |
BaseEncoding.java | 595 int bitBuffer = 0; 601 bitBuffer <<= 8; 602 bitBuffer |= b & 0xFF; 605 int charIndex = (bitBuffer >> (bitBufferLength - alphabet.bitsPerChar)) 621 int charIndex = (bitBuffer << (alphabet.bitsPerChar - bitBufferLength)) 646 int bitBuffer = 0; 674 bitBuffer <<= alphabet.bitsPerChar; 675 bitBuffer |= alphabet.decode(ch); 680 return (bitBuffer >> bitBufferLength) & 0xFF;
|
/external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/ |
BaseEncoding.java | 538 int bitBuffer = 0; 544 bitBuffer <<= 8; 545 bitBuffer |= b & 0xFF; 548 int charIndex = (bitBuffer >> (bitBufferLength - alphabet.bitsPerChar)) 564 int charIndex = (bitBuffer << (alphabet.bitsPerChar - bitBufferLength)) 589 int bitBuffer = 0; 617 bitBuffer <<= alphabet.bitsPerChar; 618 bitBuffer |= alphabet.decode(ch); 623 return (bitBuffer >> bitBufferLength) & 0xFF;
|
/external/libcups/filter/ |
rastertohp.c | 36 *BitBuffer; /* Buffer for output bits */ 341 BitBuffer = malloc(ColorBits * ((header->cupsWidth + 7) / 8)); 343 BitBuffer = NULL; 386 if (BitBuffer) 387 free(BitBuffer); 568 *bit_ptr; /* Pointer into BitBuffer */ 604 plane_ptr = Planes[plane], bit_ptr = BitBuffer; 629 CompressData(BitBuffer, bytes, 'V', header->cupsCompression); 630 CompressData(BitBuffer + bytes, bytes, plane < (NumPlanes - 1) ? 'V' : 'W',
|
/frameworks/av/media/libstagefright/codecs/aacenc/ |
Android.mk | 16 src/bitbuffer.c \
|
/external/aac/libMpegTPDec/src/ |
tpdec_adts.h | 202 * \brief Check if we have a valid ADTS frame at the current bitbuffer position 205 * It reads out the header bits to prepare the bitbuffer for the decode loop.
|
tpdec_drm.h | 165 * \brief Check if we have a valid DRM frame at the current bitbuffer position 168 * It reads out the header bits to prepare the bitbuffer for the decode loop.
|
/external/dng_sdk/source/ |
dng_read_image.cpp | 1361 uint32 bitBuffer = 0; 1370 bitBuffer = (bitBuffer << 8) | stream.Get_uint8 (); 1376 p [j] = (uint16) ((bitBuffer >> (bufferBits - bitDepth)) & bitMask); 1400 uint64 bitBuffer = 0; 1409 bitBuffer = (bitBuffer << 8) | stream.Get_uint8 (); 1415 p [j] = ((uint32) (bitBuffer >> (bufferBits - bitDepth))) & bitMask; [all...] |
/external/aac/libSBRdec/src/ |
huff_dec.cpp | 106 HANDLE_FDK_BITSTREAM hBs) /*!< Handle to Bitbuffer */
|