HomeSort by relevance Sort by last modified time
    Searched refs:bitstream (Results 1 - 25 of 71) 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];
  /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/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/libvorbis/include/vorbis/
vorbisfile.h 190 int *bitstream);
192 int bigendianp,int word,int sgned,int *bitstream,
195 int bigendianp,int word,int sgned,int *bitstream);
  /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;
370 // Assemble a single image WebP bitstream from 'wpi'.
372 WebPData* const bitstream) {
393 // Bitstream.
398 bitstream->bytes = data;
399 bitstream->size = size;
433 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;
  /external/libvorbis/doc/
02-bitpacking.tex 10 bitstream in which bits are coded one-by-one by the encoder and then
16 bitstream into an actual representation in fixed-width words.
59 The Vorbis bitpacking convention specifies storage and bitstream
76 integer to the logical bitstream first, followed by next least
196 bitstream is well defined. There are no artificial alignment
197 boundaries maintained in the bitstream.
212 container structure, such as an Ogg transport bitstream. Externally,
213 each bytestream (encoded bitstream) must begin and end on a byte
214 boundary. Often, the encoded bitstream is not an integer number of
05-comment.tex 9 packets that begin a Vorbis bitstream. It is meant for short text
11 separate logical bitstream (usually an XML stream type) that provides
199 The comment header comprises the entirety of the second bitstream
200 header packet. Unlike the first bitstream header packet, it is not
202 to within the second bitstream page. The length of the comment header
204 optional; it must be present in the bitstream even if it is
208 bitstream mapping which renders least-significant-bit of the word to be
210 bitstream octet first):
  /hardware/intel/common/libmix/mix_vbp/
mixvbp.spec 7 Summary: MIX Video Bitstream Parser
19 MIX Video Bitstream Parser is an user library interface for various video format bitstream parsing

Completed in 983 milliseconds

1 2 3