/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];
|
/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...] |
bitstream_io.cpp | 29 /* Purpose : Populate bitstream structure with bitstream buffer and size */ 224 AVCEnc_Status BitstreamTrailingBits(AVCEncBitstream *bitstream, uint *nal_size) 229 int bit_left = bitstream->bit_left; 233 /* bitstream->bit_left == 0 cannot happen here since it would have been Saved already */ 235 status = BitstreamWriteBits(bitstream, bit_left, trailing_bits[bit_left]); 243 //if(bitstream->bit_left<(WORD_SIZE<<3)) /* in fact, no need to check */ 245 status = AVCBitstreamSaveWord(bitstream);
|
avcenc_lib.h | 144 This function performs bitstream encoding of the sequence parameter set NAL. 153 This function encodes the VUI parameters into the sequence parameter set bitstream. 161 This function encodes HRD parameters into the sequence parameter set bitstream 170 This function performs bitstream encoding of the picture parameter set NAL. 183 \return "AVCENC_SUCCESS if success or bitstream fail statuses." 226 This function initializes the bitstream structure with the information given by 228 \param "bitstream" "Pointer to the AVCEncBitstream structure." 235 AVCEnc_Status BitstreamEncInit(AVCEncBitstream *bitstream, uint8 *buffer, int buf_size, 239 This function writes the data from the cache into the bitstream buffer. It also adds the 248 the bitstream buffer [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 | 123 // bitstream - (in) the bitstream data in WebP RIFF format 129 static WEBP_INLINE WebPMux* WebPMuxCreate(const WebPData* bitstream, 131 return WebPMuxCreateInternal(bitstream, copy_data, WEBP_MUX_ABI_VERSION); 193 WebPData bitstream; // image data: can either be a raw VP8/VP8L bitstream member in struct:WebPMuxFrameInfo 210 // bitstream - (in) can either be a raw VP8/VP8L bitstream or a single-image 215 // WEBP_MUX_INVALID_ARGUMENT - if mux is NULL or bitstream is NULL. 219 WebPMux* mux, const WebPData* bitstream, int copy_data) [all...] |
/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/src/modules/audio_coding/codecs/isac/main/source/ |
crc.c | 73 * - bitstream : payload bitstream 83 WebRtc_Word16 WebRtcIsac_GetCrc(const WebRtc_Word16* bitstream, 93 if (bitstream == NULL) { 97 bitstream_ptr_uw8 = (WebRtc_UWord8 *)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
|
vop.cpp | 19 #include "bitstream.h" 97 stream = currVol->bitstream; 104 { /* Bitstream Exhchange Fix 9/99 */ 105 /* Bitstream Exchange requires we allow start with Video Object Sequence */ 237 * Read the VOL header entries from the bitstream 733 * -- DecodeGOV -- Decodes the Group of VOPs from bitstream 796 * -- DecodeVopHeader -- Decodes the VOPheader information from the bitstream 806 BitstreamDecVideo *stream = currVol->bitstream; 811 * Read the VOP header from the bitstream (No shortVideoHeader Mode here!) [all...] |
pvdec_api.cpp | 20 #include "bitstream.h" 196 mp4dec_log("InitVideoDecoder(): Can't allocate bitstream buffer.\n"); 201 video->vol[idx]->bitstream = stream; 208 /* Set up VOL header bitstream for frame-based decoding. 08/30/2000 */ 609 BitstreamClose(video->vol[idx]->bitstream); 610 video->vol[idx]->bitstream = NULL; 682 if (video->vol[idx]->bitstream) 684 BitstreamClose(video->vol[idx]->bitstream); 685 oscl_free(video->vol[idx]->bitstream); [all...] |
/hardware/ti/omap3/omx/ti_omx_config_parser/src/ |
ti_video_config_parser.cpp | 64 int32 GetNAL_Config(uint8** bitstream, int32* size); 258 /* This function finds a nal from the SC's, moves the bitstream pointer to the beginning of the NAL unit, returns the 259 size of the NAL, and at the same time, updates the remaining size in the bitstream buffer that is passed in */ 260 int32 GetNAL_Config(uint8** bitstream, int32* size) 264 uint8* nal_unit = *bitstream; 274 *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):
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/ |
image_parsers.js | 143 // VP8 lossy bitstream format. 147 throw new Error('Invalid VP8 lossy bitstream signature: ' + 154 // VP8 lossless bitstream format. 158 throw new Error('Invalid VP8 lossless bitstream signature: ' +
|
/external/webp/examples/ |
dwebp.c | 379 WebPBitstreamFeatures* const bitstream = &config.input; local 458 status = WebPGetFeatures(data, data_size, bitstream); 463 if (bitstream->has_animation) { 473 output_buffer->colorspace = bitstream->has_alpha ? MODE_BGRA : MODE_BGR; 475 output_buffer->colorspace = bitstream->has_alpha ? MODE_RGBA : MODE_RGB; 486 output_buffer->colorspace = bitstream->has_alpha ? MODE_YUVA : MODE_YUV; 514 bitstream->has_alpha ? " (with alpha)" : ""); 519 bitstream->has_alpha ? " (with alpha)" : "");
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/ |
SoftMPEG4.cpp | 136 uint8_t *bitstream = inHeader->pBuffer + inHeader->nOffset; local 145 vol_data[0] = bitstream; 216 mHandle, &bitstream, ×tamp, &tmp,
|
/external/tremolo/Tremolo/ |
ivorbisfile.h | 134 int *bitstream);
|