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

1 2 3

  /external/webrtc/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...]
bitstream_io.h 44 PV_STATUS BitstreamRepos(BitstreamEncVideo *bitstream, Int byteCount, Int bitCount);
bitstream_io.cpp 20 /* Change the bitstream parsing algorithm. Use temporary word of 2 or 4 bytes */
21 /* before writing it to the bitstream buffer. */
45 /* Purpose : Create a bitstream to hold one encoded video packet or frame */
47 /* bufferSize : size of the bitstream buffer in bytes */
86 /* Purpose : close a bitstream */
88 stream : the bitstream to be closed */
114 /* stream the bitstream where the bits are put in */
162 /* stream the bitstream where the bits are put in */
200 /* Purpose : save written word into the bitstream buffer. */
202 /* stream the bitstream where the bits are put in *
    [all...]
  /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];
  /external/aac/libSACdec/src/
sac_bitdec.h 99 Description: SAC Dec bitstream decoder
105 \brief Spatial Audio bitstream decoder
126 HANDLE_FDK_BITSTREAM bitstream,
131 HANDLE_FDK_BITSTREAM bitstream,
137 HANDLE_FDK_BITSTREAM bitstream,
152 spatialDec *self, SPATIAL_BS_FRAME *frame, HANDLE_FDK_BITSTREAM bitstream,
sac_bitdec.cpp 99 Description: SAC Dec bitstream decoder
218 HANDLE_FDK_BITSTREAM bitstream, SPATIAL_SPECIFIC_CONFIG *config,
226 ba = fMin((int)FDKgetValidBits(bitstream), ba);
233 config->sacExtType[config->sacExtCnt] = FDKreadBits(bitstream, 4);
236 sacExtLen = FDKreadBits(bitstream, 4);
240 sacExtLen += FDKreadBits(bitstream, 8);
243 sacExtLen += FDKreadBits(bitstream, 16);
249 bitstream); /* Extension config payload start anchor. */
260 bitsRead = tmp - FDKgetValidBits(bitstream);
268 FDKpushFor(bitstream, nFillBits)
    [all...]
  /external/aac/libSACenc/src/
sacenc_bitstream.cpp 100 Bitstream Writer
262 /* write data to bitstream */
263 static void ecData(HANDLE_FDK_BITSTREAM bitstream,
290 FDKwriteBits(bitstream, losslessData->bsXXXDataMode[paramIdx][0], 2);
306 FDKwriteBits(bitstream, losslessData->bsXXXDataMode[paramIdx][ps], 2);
356 FDKwriteBits(bitstream, losslessData->bsDataPair[paramIdx][ps], 1);
357 FDKwriteBits(bitstream, losslessData->bsQuantCoarseXXX[paramIdx][ps], 1);
358 FDKwriteBits(bitstream, losslessData->bsFreqResStrideXXX[paramIdx][ps],
401 fdk_sacenc_ecDataPairEnc(bitstream, cmpIdxData, cmpOldData, dataType, 0,
406 fdk_sacenc_ecDataSingleEnc(bitstream, cmpIdxData, cmpOldData, dataType
547 FDK_BITSTREAM bitstream; local
739 FDK_BITSTREAM 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...]
  /external/libxaac/decoder/
ixheaacd_mps_parse.c 238 ia_mps_dec_state_struct *self, ia_handle_bit_buf_struct bitstream,
271 frame_xxx_data->bs_xxx_data_mode[i] = ixheaacd_read_bits_buf(bitstream, 2);
295 bs_data_pair = ixheaacd_read_bits_buf(bitstream, 1);
297 ixheaacd_read_bits_buf(bitstream, 1);
299 ixheaacd_read_bits_buf(bitstream, 2);
319 bitstream, data, lastdata, datatype, set_index, data_bands,
353 ia_handle_bit_buf_struct bitstream) {
367 bs_frame_type = ixheaacd_read_bits_buf(bitstream, 1);
368 self->num_parameter_sets = ixheaacd_read_bits_buf(bitstream, 3) + 1;
381 self->param_slots[i] = ixheaacd_read_bits_buf(bitstream, bits_param_slot)
    [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/mesa3d/src/gallium/drivers/nouveau/nv50/
nv84_video_bsp.c 102 { dec->bitstream, NOUVEAU_BO_RDWR | NOUVEAU_BO_GART },
191 memcpy(dec->bitstream->map, &params, sizeof(params));
193 assert(total_bytes + num_bytes[i] < dec->bitstream->size / 2 - 0x700);
194 memcpy(dec->bitstream->map + 0x700 + total_bytes, data[i], num_bytes[i]);
197 memcpy(dec->bitstream->map + 0x700 + total_bytes, end, sizeof(end));
200 memcpy(dec->bitstream->map + 0x600, more_params, sizeof(more_params));
212 /* TODO: Use both halves of bitstream/vpring for alternating frames */
216 PUSH_DATA (push, dec->bitstream->offset >> 8);
217 PUSH_DATA (push, (dec->bitstream->offset >> 8) + 7);
218 PUSH_DATA (push, dec->bitstream->size / 2 - 0x700)
    [all...]
  /external/webp/include/webp/
mux.h 130 // bitstream - (in) the bitstream data in WebP RIFF format
136 static WEBP_INLINE WebPMux* WebPMuxCreate(const WebPData* bitstream,
138 return WebPMuxCreateInternal(bitstream, copy_data, WEBP_MUX_ABI_VERSION);
200 WebPData bitstream; // image data: can be a raw VP8/VP8L bitstream member in struct:WebPMuxFrameInfo
217 // bitstream - (in) can be a raw VP8/VP8L bitstream or a single-image
222 // WEBP_MUX_INVALID_ARGUMENT - if mux is NULL or bitstream is NULL.
226 WebPMux* mux, const WebPData* bitstream, int copy_data)
    [all...]
  /external/webp/src/webp/
mux.h 130 // bitstream - (in) the bitstream data in WebP RIFF format
136 static WEBP_INLINE WebPMux* WebPMuxCreate(const WebPData* bitstream,
138 return WebPMuxCreateInternal(bitstream, copy_data, WEBP_MUX_ABI_VERSION);
200 WebPData bitstream; // image data: can be a raw VP8/VP8L bitstream member in struct:WebPMuxFrameInfo
217 // bitstream - (in) can be a raw VP8/VP8L bitstream or a single-image
222 // WEBP_MUX_INVALID_ARGUMENT - if mux is NULL or bitstream is NULL.
226 WebPMux* mux, const WebPData* bitstream, int copy_data)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
h264_bitstream_parser.h 23 // Stateful H264 bitstream parser (due to SPS/PPS). Used to parse out QP values
24 // from the bitstream.
31 // Parse an additional chunk of H264 bitstream.
32 void ParseBitstream(const uint8_t* bitstream, size_t length);
34 // Get the last extracted QP value from the parsed bitstream.
  /external/webrtc/webrtc/modules/audio_coding/test/
opus_test.cc 277 uint8_t bitstream[kMaxBytes]; local
281 &audio[read_samples], frame_length, kMaxBytes, bitstream);
304 opus_mono_decoder_, bitstream, bitstream_len_byte,
313 opus_stereo_decoder_, bitstream, bitstream_len_byte,
324 bitstream, bitstream_len_byte, NULL);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
crc.c 73 * - bitstream : payload bitstream
83 int WebRtcIsac_GetCrc(const int16_t* bitstream,
93 if (bitstream == NULL) {
97 bitstream_ptr_uw8 = (uint8_t *)bitstream;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
packet_util.cpp 20 #include "bitstream.h"
33 BitstreamDecVideo *stream = video->bitstream;
148 BitstreamDecVideo *stream = video->bitstream;
199 BitstreamDecVideo *stream = video->bitstream;
mp4lib_int.h 90 BitstreamDecVideo *bitstream; /* library bitstream buffer (input buffer) */ member in struct:tagVol
201 BitstreamDecVideo *bitstream; /* library bitstream buffer (input buffer) */ member in struct:tagVideoDecData
  /external/webp/src/mux/
muxedit.c 125 // Outputs image data given a bitstream. The bitstream can either be a
127 // Also outputs 'is_lossless' to be true if the given bitstream is lossless.
128 static WebPMuxError GetImageData(const WebPData* const bitstream,
132 if (bitstream->size < TAG_SIZE ||
133 memcmp(bitstream->bytes, "RIFF", TAG_SIZE)) {
135 *image = *bitstream;
139 WebPMux* const mux = WebPMuxCreate(bitstream, 0);
213 // Extracts image & alpha data from the given bitstream and then sets wpi.alpha_
216 const WebPData* const bitstream, int copy_data, WebPMuxImage* const wpi)
269 const WebPData* const bitstream = &info->bitstream; local
    [all...]
muxread.c 168 WebPMux* WebPMuxCreateInternal(const WebPData* bitstream, int copy_data,
184 if (bitstream == NULL) return NULL;
186 data = bitstream->bytes;
187 size = bitstream->size;
373 // Assemble a single image WebP bitstream from 'wpi'.
375 WebPData* const bitstream) {
396 // Bitstream.
401 bitstream->bytes = data;
402 bitstream->size = size;
436 return SynthesizeBitstream(wpi, &info->bitstream);
    [all...]
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_video_config_parser.cpp 65 int32 GetNAL_Config(uint8** bitstream, int32* size);
243 /* This function finds a nal from the SC's, moves the bitstream pointer to the beginning of the NAL unit, returns the
244 size of the NAL, and at the same time, updates the remaining size in the bitstream buffer that is passed in */
245 int32 GetNAL_Config(uint8** bitstream, int32* size)
249 uint8* nal_unit = *bitstream;
259 *bitstream = nal_unit + i;

Completed in 1155 milliseconds

1 2 3