Searched refs:tmpvar (Results 1 – 8 of 8) sorted by relevance
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | vop.cpp | 85 uint32 tmpvar, vol_shape; in DecodeVOLHeader() local 108 tmpvar = (uint32) BitstreamReadBits16(stream, 8); /* profile */ in DecodeVOLHeader() 113 if (tmpvar != 0x10 && tmpvar != 0x11 && tmpvar != 0x12 && in DecodeVOLHeader() 114 tmpvar != 0xA1 && tmpvar != 0xA2 && tmpvar != 0xA3/* Core SP@L1-L3 */) in DecodeVOLHeader() 120 if (tmpvar != 0x01 && tmpvar != 0x02 && tmpvar != 0x03 && tmpvar != 0x08 && in DecodeVOLHeader() 124 tmpvar != 0x04 && tmpvar != 0x05 && in DecodeVOLHeader() 125 tmpvar != 0x10 && tmpvar != 0x11 && tmpvar != 0x12 && in DecodeVOLHeader() 126 tmpvar != 0x21 && tmpvar != 0x22 && /* Core Profile Levels */ in DecodeVOLHeader() 127 tmpvar != 0xA1 && tmpvar != 0xA2 && tmpvar != 0xA3 && in DecodeVOLHeader() 128 tmpvar != 0xF0 && tmpvar != 0xF1 && /* Advanced Simple Profile Levels*/ in DecodeVOLHeader() [all …]
|
D | packet_util.cpp | 146 uint32 tmpvar; in PV_GobHeader() local 152 BitstreamShowBits32(stream, GOB_RESYNC_MARKER_LENGTH, &tmpvar); in PV_GobHeader() 154 if (tmpvar != GOB_RESYNC_MARKER) in PV_GobHeader() 156 PV_BitstreamShowBitsByteAlign(stream, GOB_RESYNC_MARKER_LENGTH, &tmpvar); in PV_GobHeader() 158 if (tmpvar != GOB_RESYNC_MARKER) in PV_GobHeader() 168 BitstreamShowBits32(stream, GOB_RESYNC_MARKER_LENGTH + 5, &tmpvar); in PV_GobHeader() 169 tmpvar &= 0x1F; in PV_GobHeader() 171 if (tmpvar == 0) in PV_GobHeader() 176 if (tmpvar == 31) in PV_GobHeader() 184 currVop->gobNumber = (int) tmpvar; in PV_GobHeader() [all …]
|
D | post_filter.cpp | 188 int tmpvar; in H263_Deblock() local 275 tmpvar = B + d1; in H263_Deblock() 276 CLIP_RESULT(tmpvar) in H263_Deblock() 277 *(rec_y - width) = tmpvar; in H263_Deblock() 278 tmpvar = C - d1; in H263_Deblock() 279 CLIP_RESULT(tmpvar) in H263_Deblock() 280 *rec_y = tmpvar; in H263_Deblock() 372 tmpvar = B + d1; in H263_Deblock() 373 CLIP_RESULT(tmpvar) in H263_Deblock() 374 *(rec_y - width) = tmpvar; in H263_Deblock() [all …]
|
D | bitstream.cpp | 685 uint32 tmpvar; in quickSearchVideoPacketHeader() local 697 PV_BitstreamShowBitsByteAlign(stream, marker_length, &tmpvar); in quickSearchVideoPacketHeader() 698 if (tmpvar == RESYNC_MARKER) break; in quickSearchVideoPacketHeader() 709 uint32 tmpvar; in quickSearchH263SliceHeader() local 721 PV_BitstreamShowBitsByteAlignNoForceStuffing(stream, 17, &tmpvar); in quickSearchH263SliceHeader() 722 if (tmpvar == RESYNC_MARKER) break; in quickSearchH263SliceHeader() 788 uint32 tmpvar, tmpvar2; in quickSearchMotionMarker() local 800 BitstreamShowBits32(stream, 17, &tmpvar); in quickSearchMotionMarker() 801 if (!tmpvar) return PV_FAIL; in quickSearchMotionMarker() 803 if (tmpvar & 1) // Check if the 17th bit from the curr bit pos is a '1' in quickSearchMotionMarker() [all …]
|
D | combined_decode.cpp | 54 uint32 tmpvar, long_zero_bits; in DecodeFrameCombinedMode() local 205 status = BitstreamShowBits32(stream, GOB_RESYNC_MARKER_LENGTH, &tmpvar); in DecodeFrameCombinedMode() 207 if (tmpvar == GOB_RESYNC_MARKER) in DecodeFrameCombinedMode() 213 … status = PV_BitstreamShowBitsByteAlign(stream, GOB_RESYNC_MARKER_LENGTH, &tmpvar); in DecodeFrameCombinedMode() 214 if (tmpvar == GOB_RESYNC_MARKER) break; in DecodeFrameCombinedMode() 233 PV_BitstreamShowBitsByteAlignNoForceStuffing(stream, 17, &tmpvar); in DecodeFrameCombinedMode() 234 if (tmpvar == RESYNC_MARKER) in DecodeFrameCombinedMode() 261 …status = PV_BitstreamShowBitsByteAlign(stream, 23, &tmpvar); /* this call is valid for f_code < 8 … in DecodeFrameCombinedMode() 262 long_zero_bits = !tmpvar; in DecodeFrameCombinedMode() 264 if ((tmpvar >> (23 - resync_marker_length)) == RESYNC_MARKER || long_zero_bits) in DecodeFrameCombinedMode()
|
D | datapart_decode.cpp | 147 uint32 tmpvar; in DecodeDataPart_I_VideoPacket() local 198 status = BitstreamShowBits32(stream, DC_MARKER_LENGTH, &tmpvar); in DecodeDataPart_I_VideoPacket() 201 while (tmpvar != DC_MARKER && video->mbnum < nTotalMB); in DecodeDataPart_I_VideoPacket() 203 if (tmpvar == DC_MARKER) in DecodeDataPart_I_VideoPacket() 314 uint32 tmpvar; in DecodeDataPart_P_VideoPacket() local 375 status = BitstreamShowBits32(stream, MOTION_MARKER_COMB_LENGTH, &tmpvar); in DecodeDataPart_P_VideoPacket() 378 while (tmpvar != MOTION_MARKER_COMB && video->mbnum < nTotalMB); in DecodeDataPart_P_VideoPacket() 380 if (tmpvar == MOTION_MARKER_COMB) in DecodeDataPart_P_VideoPacket()
|
D | pvdec_api.cpp | 1599 int32 tmpvar; in PVDecPostProcess() local 1626 tmpvar = (int32)video->width * video->height; in PVDecPostProcess() 1627 oscl_memcpy(outputBuffer, decCtrl->outputFrame, tmpvar*3 / 2); /* 3/3/01 */ in PVDecPostProcess()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | vop.cpp | 280 UInt tmpvar; in EncodeGOVHeader() local 288 tmpvar = seconds / 3600; in EncodeGOVHeader() 289 status = BitstreamPutBits(stream, 5, tmpvar); /* Hours*/ in EncodeGOVHeader() 291 tmpvar = (seconds - tmpvar * 3600) / 60; in EncodeGOVHeader() 292 status = BitstreamPutBits(stream, 6, tmpvar); /* Minutes*/ in EncodeGOVHeader() 296 tmpvar = seconds % 60; in EncodeGOVHeader() 297 status = BitstreamPutBits(stream, 6, tmpvar); /* Seconds*/ in EncodeGOVHeader()
|