Searched refs:tempValue (Results 1 – 8 of 8) sorted by relevance
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/parser/ |
D | vc1parse_pic_com.c | 27 uint32_t tempValue; in vc1_ParsePictureHeader() local 41 result = viddec_pm_peek_bits(ctxt, &tempValue, 17); in vc1_ParsePictureHeader() 51 VC1_GET_BITS9(1, tempValue); /* INTERPFRM. */ in vc1_ParsePictureHeader() 54 VC1_GET_BITS9(2, tempValue); /* FRMCNT. */ in vc1_ParsePictureHeader() 78 VC1_PEEK_BITS( 7, tempValue ); in vc1_ParsePictureHeader() 79 if ( tempValue == 0x7f ) in vc1_ParsePictureHeader()
|
D | vc1parse_huffman.c | 19 uint32_t tempValue; in vc1_DecodeHuffmanOne() local 36 VC1_GET_BITS9(1, tempValue); in vc1_DecodeHuffmanOne() 37 value = (value << 1) | tempValue; in vc1_DecodeHuffmanOne() 61 uint32_t tempValue; in vc1_DecodeHuffmanPair() local 78 VC1_GET_BITS9(1, tempValue); in vc1_DecodeHuffmanPair() 79 value = (value << 1) | tempValue; in vc1_DecodeHuffmanPair()
|
D | vc1parse.c | 115 uint32_t tempValue; in vc1_ParseSequenceLayer() local 153 result = viddec_pm_get_bits(ctxt, &tempValue, 4); in vc1_ParseSequenceLayer() 154 sh.ASPECT_RATIO = tempValue; in vc1_ParseSequenceLayer() 161 result = viddec_pm_get_bits(ctxt, &tempValue, 1); in vc1_ParseSequenceLayer() 162 sh.FRAMERATE_FLAG = tempValue; in vc1_ParseSequenceLayer() 165 result = viddec_pm_get_bits(ctxt, &tempValue, 1); in vc1_ParseSequenceLayer() 166 sh.FRAMERATEIND = tempValue; in vc1_ParseSequenceLayer() 173 result = viddec_pm_get_bits(ctxt, &tempValue, 16); in vc1_ParseSequenceLayer() 174 sh.FRAMERATEEXP = tempValue; in vc1_ParseSequenceLayer() 178 result = viddec_pm_get_bits(ctxt, &tempValue, 1); in vc1_ParseSequenceLayer() [all …]
|
D | vc1parse_ipic.c | 29 uint32_t tempValue; in vc1_ParsePictureHeader_ProgressiveIpicture() local 55 VC1_GET_BITS9(7, tempValue); /* BF. */ in vc1_ParsePictureHeader_ProgressiveIpicture() 79 VC1_GET_BITS9(2, tempValue); /* RESPIC. */ in vc1_ParsePictureHeader_ProgressiveIpicture()
|
D | vc1parse_bitplane.c | 474 uint32_t tempValue; in vc1_DecodeBitplane() local 489 VC1_GET_BITS(1, tempValue); in vc1_DecodeBitplane() 490 bpp->invert = (uint8_t) tempValue; in vc1_DecodeBitplane() 527 VC1_GET_BITS(1, tempValue); in vc1_DecodeBitplane() 529 if (tempValue == 1) in vc1_DecodeBitplane() 533 VC1_GET_BITS(1, tempValue); in vc1_DecodeBitplane() 534 put_bit( tempValue, j, i, width, height, bpp->invert, in vc1_DecodeBitplane() 551 VC1_GET_BITS(1, tempValue); in vc1_DecodeBitplane() 553 if (tempValue == 1) in vc1_DecodeBitplane() 557 VC1_GET_BITS(1, tempValue); in vc1_DecodeBitplane() [all …]
|
D | vc1parse_ppic.c | 28 uint32_t tempValue; in vc1_ParsePictureHeader_ProgressivePpicture() local 62 VC1_GET_BITS9(2, tempValue); /* RESPIC. */ in vc1_ParsePictureHeader_ProgressivePpicture()
|
D | vc1parse_ipic_adv.c | 167 uint32_t tempValue; in vc1_ParseFieldHeader_InterlaceIpicture_Adv() local 196 VC1_GET_BITS9(2, tempValue); /* POSTPROC. */ in vc1_ParseFieldHeader_InterlaceIpicture_Adv()
|
D | vc1parse_pic_com_adv.c | 32 uint32_t tempValue; in vc1_ParsePictureHeader_Adv() local 150 VC1_GET_BITS9(1, tempValue); /* INTERPFRM. */ in vc1_ParsePictureHeader_Adv()
|