HomeSort by relevance Sort by last modified time
    Searched defs:bitstream (Results 1 - 13 of 13) 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);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
SoftMPEG4.cpp 144 uint8_t *bitstream = inHeader->pBuffer + inHeader->nOffset; local
145 uint32_t *start_code = (uint32_t *)bitstream;
159 vol_data[0] = bitstream;
236 mHandle, &bitstream, &timestamp, &tmp,
  /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...]
  /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/intel/common/libva/test/encode/
avcenc.c 734 typedef struct __bitstream bitstream; typedef in typeref:struct:__bitstream
766 bitstream_start(bitstream *bs)
774 bitstream_end(bitstream *bs)
786 bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)
814 bitstream_put_ue(bitstream *bs, unsigned int val)
829 bitstream_put_se(bitstream *bs, int val)
842 bitstream_byte_aligning(bitstream *bs, int bit)
862 rbsp_trailing_bits(bitstream *bs)
868 static void nal_start_code_prefix(bitstream *bs)
873 static void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type
    [all...]
mpeg2enc.c 161 typedef struct __bitstream bitstream; typedef in typeref:struct:__bitstream
175 bitstream_start(bitstream *bs)
183 bitstream_end(bitstream *bs)
195 bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)
226 bitstream_byte_aligning(bitstream *bs, int bit)
282 bitstream *bs)
331 bitstream *bs)
391 bitstream bs;
406 bitstream bs;
    [all...]
mpeg2vaenc.c 161 typedef struct __bitstream bitstream; typedef in typeref:struct:__bitstream
175 bitstream_start(bitstream *bs)
183 bitstream_end(bitstream *bs)
195 bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)
226 bitstream_byte_aligning(bitstream *bs, int bit)
282 bitstream *bs)
331 bitstream *bs)
391 bitstream bs;
406 bitstream bs;
    [all...]
h264encode.c 169 typedef struct __bitstream bitstream; typedef in typeref:struct:__bitstream
184 bitstream_start(bitstream *bs)
192 bitstream_end(bitstream *bs)
204 bitstream_put_ui(bitstream *bs, unsigned int val, int size_in_bits)
232 bitstream_put_ue(bitstream *bs, unsigned int val)
247 bitstream_put_se(bitstream *bs, int val)
260 bitstream_byte_aligning(bitstream *bs, int bit)
280 rbsp_trailing_bits(bitstream *bs)
286 static void nal_start_code_prefix(bitstream *bs)
291 static void nal_header(bitstream *bs, int nal_ref_idc, int nal_unit_type
    [all...]
  /hardware/intel/common/libva/test/transcode/
mpeg2transcode.cpp 2441 typedef struct __bitstream bitstream; typedef in typeref:struct:__bitstream
    [all...]
  /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 829 milliseconds