HomeSort by relevance Sort by last modified time
    Searched defs:bitstream (Results 1 - 9 of 9) sorted by null

  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
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...]
avcenc_int.h 125 Bitstream structure contains bitstream related parameters such as the pointer
375 AVCEncBitstream *bitstream; /* for current NAL */ member in struct:tagEncObject
  /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
209 // bitstream - (in) can either be a raw VP8/VP8L bitstream or a single-image
214 // WEBP_MUX_INVALID_ARGUMENT - if mux is NULL or bitstream is NULL.
218 WebPMux* mux, const WebPData* bitstream, int copy_data)
    [all...]
  /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, &timestamp, &tmp,
  /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/src/
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
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
h264_utils.h 102 // This type is used when parsing an H.264 bitstream to collect H.264 NAL
462 OMX_U8* bitstream; member in class:h264_stream_parser
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
h264_utils.h 107 // This type is used when parsing an H.264 bitstream to collect H.264 NAL
463 OMX_U8* bitstream; member in class:h264_stream_parser

Completed in 182 milliseconds