Home
last modified time | relevance | path

Searched refs:bitstream (Results 1 – 25 of 40) sorted by relevance

12

/aosp12/frameworks/av/media/codecs/m4v_h263/enc/src/
H A Dvlc_encode.h24 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);
35 Int PutRunCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
[all …]
H A Dvlc_encode.cpp149 Int PutMV(Int mvint, BitstreamEncVideo *bitstream);
182 PutDCsize_lum(Int size, BitstreamEncVideo *bitstream) in PutDCsize_lum() argument
197 PutDCsize_chrom(Int size, BitstreamEncVideo *bitstream) in PutDCsize_chrom() argument
211 PutMV(Int mvint, BitstreamEncVideo *bitstream) in PutMV() argument
231 BitstreamPut1Bits(bitstream, sign); in PutMV()
738 BitstreamPutBits(bitstream, 7 + 1, 6/*3*/); in PutLevelCoeff_Inter()
748 BitstreamPutBits(bitstream, 7 + 1, 6/*3*/); in PutLevelCoeff_Inter()
765 BitstreamPutBits(bitstream, 7 + 1, 6/*3*/); in PutLevelCoeff_Inter_Last()
1963 n_bits = PutDCsize_lum(size, bitstream); in IntraDC_dpcm()
1967 n_bits = PutDCsize_chrom(size, bitstream); in IntraDC_dpcm()
[all …]
H A Dbitstream_io.cpp581 PV_STATUS BitstreamRepos(BitstreamEncVideo *bitstream, Int byteCount, Int bitCount) in BitstreamRepos() argument
587 BitstreamSavePartial(bitstream, &fraction); in BitstreamRepos()
589 bitstream->byteCount = byteCount; in BitstreamRepos()
590 ptr = bitstream->bitstreamBuffer + byteCount; /* get fraction of the byte */ in BitstreamRepos()
593 bitstream->bitLeft = (WORD_SIZE << 3) - bitCount; /* bitCount should be 0-31 */ in BitstreamRepos()
603 bitstream->word = word >> (bitstream->bitLeft); in BitstreamRepos()
607 bitstream->word = 0; in BitstreamRepos()
608 bitstream->bitLeft = (WORD_SIZE << 3); in BitstreamRepos()
H A Dbitstream_io.h44 PV_STATUS BitstreamRepos(BitstreamEncVideo *bitstream, Int byteCount, Int bitCount);
/aosp12/frameworks/av/media/codecs/m4v_h263/dec/src/
H A Dpvdec_api.cpp224 video->vol[idx]->bitstream = stream; in PVInitVideoDecoder()
626 video->vol[idx]->bitstream = NULL; in PVCleanUpVideoDecoder()
694 if (video->vol[idx]->bitstream) in PVCleanUpVideoDecoder()
697 oscl_free(video->vol[idx]->bitstream); in PVCleanUpVideoDecoder()
1080 stream = video->vol[idx]->bitstream; in PVDecodeVopHeader()
1124 video->bitstream = stream = currVol->bitstream; in PVDecodeVopHeader()
1130 stream = video->vol[target_layer]->bitstream; in PVDecodeVopHeader()
1155 video->bitstream = stream = currVol->bitstream; in PVDecodeVopHeader()
1270 PV_BitstreamByteAlign(currVol->bitstream); in PVDecodeVopBody()
1415 if (bytes_consumed > currVol->bitstream->data_end_pos) in PVDecodeVopBody()
[all …]
H A Dvop.cpp95 stream = currVol->bitstream; in DecodeVOLHeader()
823 BitstreamDecVideo *stream = currVol->bitstream; in DecodeVOPHeader()
1033 BitstreamDecVideo *stream = currVol->bitstream; in DecodeShortHeader()
1603 BitstreamByteAlignNoForceStuffing(currVol->bitstream); in PV_DecodeVop()
1608 PV_BitstreamFlushBits(currVol->bitstream, 16); in PV_DecodeVop()
1609 PV_BitstreamFlushBits(currVol->bitstream, 16); in PV_DecodeVop()
1624 status = BitstreamShowBits32(currVol->bitstream, 22, &tmpvar); in PV_DecodeVop()
1627 PV_BitstreamFlushBits(currVol->bitstream, 22); in PV_DecodeVop()
1631 status = PV_BitstreamShowBitsByteAlign(currVol->bitstream, 22, &tmpvar); in PV_DecodeVop()
1634 PV_BitstreamByteAlign(currVol->bitstream); in PV_DecodeVop()
[all …]
H A Dpacket_util.cpp33 BitstreamDecVideo *stream = video->bitstream; in PV_ReadVideoPacketHeader()
152 BitstreamDecVideo *stream = video->bitstream; in PV_GobHeader()
203 BitstreamDecVideo *stream = video->bitstream; in PV_H263SliceHeader()
H A Ddatapart_decode.cpp43 BitstreamDecVideo *stream = video->bitstream; in DecodeFrameDataPartMode()
142 BitstreamDecVideo *stream = video->bitstream; in DecodeDataPart_I_VideoPacket()
307 BitstreamDecVideo *stream = video->bitstream; in DecodeDataPart_P_VideoPacket()
519 BitstreamDecVideo *stream = video->bitstream; in GetMBheaderDataPart_DQUANT_DC()
576 BitstreamDecVideo *stream = video->bitstream; in GetMBheaderDataPart_P()
H A Dmp4lib_int.h90 BitstreamDecVideo *bitstream; /* library bitstream buffer (input buffer) */ member
201 BitstreamDecVideo *bitstream; /* library bitstream buffer (input buffer) */ member
H A Dvlc_dequant.cpp55 BitstreamDecVideo *stream = video->bitstream; in VlcDequantMpegIntraBlock()
387 BitstreamDecVideo *stream = video->bitstream; in VlcDequantMpegInterBlock()
505 BitstreamDecVideo *stream = video->bitstream; in VlcDequantH263IntraBlock()
807 BitstreamDecVideo *stream = video->bitstream; in VlcDequantH263IntraBlock_SH()
1069 BitstreamDecVideo *stream = video->bitstream; in VlcDequantH263InterBlock()
H A Dcombined_decode.cpp47 BitstreamDecVideo *stream = video->bitstream; in DecodeFrameCombinedMode()
347 BitstreamDecVideo *stream = video->bitstream; in GetMBheader()
528 BitstreamDecVideo *stream = video->bitstream;
H A Dconceal.cpp39 BitstreamDecVideo *stream = video->bitstream; in ConcealTexture_I()
/aosp12/frameworks/av/media/codecs/amrnb/common/src/
H A Dbits2prm.cpp164 Word16 *bitstream /* input: address where bits are read from */ in Bin2int() argument
175 single_bit = *(bitstream++); in Bin2int()
/aosp12/frameworks/av/media/codecs/amrnb/enc/src/
H A Dprm2bits.cpp181 Word16 *bitstream /* output: address where bits are written */ in Int2bin() argument
187 pt_bitstream = &bitstream[no_of_bits-1]; in Int2bin()
/aosp12/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/
H A DSoftMPEG4.cpp140 uint8_t *bitstream = inHeader->pBuffer + inHeader->nOffset; in onQueueFilled() local
141 uint32_t *start_code = (uint32_t *)bitstream; in onQueueFilled()
155 vol_data[0] = bitstream; in onQueueFilled()
257 uint8_t *bitstreamTmp = bitstream; in onQueueFilled()
/aosp12/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
H A Dh264_utils.cpp554 bitstream = NULL; in reset()
567 bitstream = data; in init_bitstream()
778 OMX_U8 *sei_msg_start = bitstream; in parse_sei()
1162 if (*bitstream == EMULATION_PREVENTION_THREE_BYTE && in read_word()
1171 curr_32_bit |= *bitstream; in read_word()
1174 if (*bitstream == 0) in read_word()
1178 bitstream++; in read_word()
/aosp12/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
H A Dh264_utils.cpp512 bitstream = NULL; in reset()
525 bitstream = data; in init_bitstream()
725 OMX_U8 *sei_msg_start = bitstream; in parse_sei()
1083 if (*bitstream == EMULATION_PREVENTION_THREE_BYTE && in read_word()
1089 curr_32_bit |= *bitstream; in read_word()
1092 if (*bitstream == 0) in read_word()
1096 bitstream++; in read_word()
/aosp12/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
H A Dh264_utils.cpp512 bitstream = NULL; in reset()
525 bitstream = data; in init_bitstream()
725 OMX_U8 *sei_msg_start = bitstream; in parse_sei()
1083 if (*bitstream == EMULATION_PREVENTION_THREE_BYTE && in read_word()
1089 curr_32_bit |= *bitstream; in read_word()
1092 if (*bitstream == 0) in read_word()
1096 bitstream++; in read_word()
/aosp12/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
H A Dh264_utils.cpp512 bitstream = NULL; in reset()
525 bitstream = data; in init_bitstream()
725 OMX_U8 *sei_msg_start = bitstream; in parse_sei()
1083 if (*bitstream == EMULATION_PREVENTION_THREE_BYTE && in read_word()
1089 curr_32_bit |= *bitstream; in read_word()
1092 if (*bitstream == 0) in read_word()
1096 bitstream++; in read_word()
/aosp12/hardware/qcom/sm8150/media/libarbitrarybytes/src/
H A Dh264_utils.cpp504 bitstream = NULL; in reset()
517 bitstream = data; in init_bitstream()
717 OMX_U8 *sei_msg_start = bitstream; in parse_sei()
1074 if (*bitstream == EMULATION_PREVENTION_THREE_BYTE && in read_word()
1080 curr_32_bit |= *bitstream; in read_word()
1083 if (*bitstream == 0) in read_word()
1087 bitstream++; in read_word()
/aosp12/system/bt/embdrv/sbc/decoder/
H A DAndroid.bp19 "srce/bitstream-decode.c",
/aosp12/frameworks/av/media/codec2/components/mpeg4_h263/
H A DC2SoftMpeg4Dec.cpp521 uint8_t *bitstream = const_cast<uint8_t *>(rView.data() + inOffset); in process() local
522 uint32_t *start_code = (uint32_t *)bitstream; in process()
535 vol_data[0] = bitstream; in process()
610 uint8_t *bitstreamTmp = bitstream; in process()
/aosp12/frameworks/av/media/codecs/m4v_h263/dec/
H A DAndroid.bp32 "src/bitstream.cpp",
/aosp12/system/bt/embdrv/sbc/
H A DBUILD.gn22 "decoder/srce/bitstream-decode.c",
/aosp12/frameworks/av/media/codecs/m4v_h263/dec/include/
H A Dmp4dec_api.h157 …OSCL_IMPORT_REF Bool PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *…

12