HomeSort by relevance Sort by last modified time
    Searched refs:bitstream (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
pack_bits.h 25 * unpacking of bits from bitstream, i.e., vector of bytes
29 uint16_t *bitstream, /* (o) The packetized bitstream */
unpack_bits.h 25 * unpacking of bits from bitstream, i.e., vector of bytes
29 const uint16_t *bitstream, /* (i) The packatized bitstream */
30 iLBC_bits *enc_bits, /* (o) Paramerers from bitstream */
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.h 24 Int PutCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
25 Int PutCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
26 Int PutCBPY(Int cbpy, Char intra, BitstreamEncVideo *bitstream);
27 Int PutMCBPC_Inter(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
28 Int PutMCBPC_Intra(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
29 Int PutMV(Int mvint, BitstreamEncVideo *bitstream);
30 Int PutDCsize_chrom(Int size, BitstreamEncVideo *bitstream);
31 Int PutDCsize_lum(Int size, BitstreamEncVideo *bitstream);
32 Int PutDCsize_lum(Int size, BitstreamEncVideo *bitstream);
33 Int PutCoeff_Inter_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
    [all...]
vlc_encode.cpp 64 * Description: Functions for writing to bitstream
142 Int PutCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream);
143 Int PutCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream);
144 Int PutCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream);
145 Int PutCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream);
146 Int PutCBPY(Int cbpy, Char intra, BitstreamEncVideo *bitstream);
147 Int PutMCBPC_Inter(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
148 Int PutMCBPC_Intra(Int cbpc, Int mode, BitstreamEncVideo *bitstream);
149 Int PutMV(Int mvint, BitstreamEncVideo *bitstream);
150 Int PutDCsize_chrom(Int size, BitstreamEncVideo *bitstream);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_pcma.cc 27 int16_t ACMPCMA::InternalEncode(uint8_t* bitstream,
31 reinterpret_cast<int16_t*>(bitstream));
acm_pcmu.cc 27 int16_t ACMPCMU::InternalEncode(uint8_t* bitstream,
31 reinterpret_cast<int16_t*>(bitstream));
acm_dtmf_playout.h 28 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_pcm16b.h 28 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_pcma.h 28 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_pcmu.h 28 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_red.h 28 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_pcm16b.cc 30 int16_t ACMPCM16B::InternalEncode(uint8_t* /* bitstream */,
56 int16_t ACMPCM16B::InternalEncode(uint8_t* bitstream,
60 bitstream);
acm_cng.h 32 int16_t InternalEncode(uint8_t* bitstream,
acm_gsmfr.h 32 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_ilbc.h 32 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_celt.h 31 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_g722.h 36 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
acm_g7221.h 37 int16_t InternalEncode(uint8_t* bitstream, int16_t* bitstream_len_byte);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
bits2prm.cpp 84 bitstream = pointer to buffer where bits are read
102 Purpose : Read "no_of_bits" bits from the array bitstream[]
120 Word16 *bitstream // output: address where bits are written
129 bit = *bitstream++;
164 Word16 *bitstream /* input: address where bits are read from */
175 single_bit = *(bitstream++);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
prm2bits.cpp 95 bitstream = pointer to address where bits are written of type Word16
112 bitstream[]. The most significant bits are written first.
130 Word16 *bitstream // output: address where bits are written
135 pt_bitstream = &bitstream[no_of_bits];
181 Word16 *bitstream /* output: address where bits are written */
187 pt_bitstream = &bitstream[no_of_bits-1];
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
vlc_encode.cpp 22 AVCEnc_Status ue_v(AVCEncBitstream *bitstream, uint codeNum)
24 if (AVCENC_SUCCESS != SetEGBitstring(bitstream, codeNum))
32 AVCEnc_Status se_v(AVCEncBitstream *bitstream, int value)
46 status = ue_v(bitstream, codeNum);
51 AVCEnc_Status te_v(AVCEncBitstream *bitstream, uint value, uint range)
57 return ue_v(bitstream, value);
61 status = BitstreamWrite1Bit(bitstream, 1 - value);
70 AVCEnc_Status SetEGBitstring(AVCEncBitstream *bitstream, uint codeNum)
78 status = BitstreamWrite1Bit(bitstream, 1);
91 status = BitstreamWriteBits(bitstream, leadingZeros, 0)
    [all...]
avcenc_api.cpp 24 /* Purpose : Sniff NAL type from the bitstream */
29 OSCL_EXPORT_REF AVCEnc_Status PVAVCEncGetNALType(unsigned char *bitstream, int size,
35 forbidden_zero_bit = bitstream[0] >> 7;
38 *nal_ref_idc = (bitstream[0] & 0x60) >> 5;
39 *nal_type = bitstream[0] & 0x1F;
93 /* allocate bitstream structure */
94 encvid->bitstream = (AVCEncBitstream*) avcHandle->CBAVC_Malloc(userData, sizeof(AVCEncBitstream), DEFAULT_ATTR);
95 if (encvid->bitstream == NULL)
99 encvid->bitstream->encvid = encvid; /* to point back for reallocation */
372 AVCEncBitstream *bitstream = encvid->bitstream local
524 AVCEncBitstream *bitstream = encvid->bitstream; local
    [all...]
  /hardware/intel/common/libmix/videoencoder/
bitstream.h 23 struct bitstream { struct
41 static void bitstream_start(bitstream *bs)
48 static void bitstream_end(bitstream *bs)
59 static void bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)
88 static void bitstream_put_ue(bitstream *bs, unsigned int val)
102 static void bitstream_put_se(bitstream *bs, int val)
114 static void bitstream_byte_aligning(bitstream *bs, int bit)
133 static void rbsp_trailing_bits(bitstream *bs)
139 static void nal_start_code_prefix(bitstream *bs)
144 static void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmapView.java 34 * PurgeableBitmapView decodes an encoded bitstream to a Bitmap each time update()
39 private final byte[] bitstream; field in class:PurgeableBitmapView
61 bitstream = generateBitstream(src, Bitmap.CompressFormat.JPEG, 80);
84 bitstream, 0, bitstream.length, mOptions);
  /external/chromium_org/third_party/libwebp/webp/
mux.h 126 // bitstream - (in) the bitstream data in WebP RIFF format
132 static WEBP_INLINE WebPMux* WebPMuxCreate(const WebPData* bitstream,
134 return WebPMuxCreateInternal(bitstream, copy_data, WEBP_MUX_ABI_VERSION);
196 WebPData bitstream; // image data: can be a raw VP8/VP8L bitstream member in struct:WebPMuxFrameInfo
213 // bitstream - (in) can be a raw VP8/VP8L bitstream or a single-image
218 // WEBP_MUX_INVALID_ARGUMENT - if mux is NULL or bitstream is NULL.
222 WebPMux* mux, const WebPData* bitstream, int copy_data)
    [all...]

Completed in 382 milliseconds

1 2 3 4 5