Home
last modified time | relevance | path

Searched refs:nextScale (Results 1 – 2 of 2) sorted by relevance

/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
Dh264parse.c28 int32_t delta_scale, lastScale, nextScale; in h264_Scaling_List() local
44 nextScale = 8; in h264_Scaling_List()
51 if(nextScale!=0) in h264_Scaling_List()
54 nextScale = (lastScale + delta_scale + 256) % 256; in h264_Scaling_List()
55 *UseDefaultScalingMatrix = (uint8_t) (scanj==0 && nextScale==0); in h264_Scaling_List()
58 scalingList[scanj] = (nextScale==0) ? lastScale:nextScale; in h264_Scaling_List()
/hardware/intel/common/wrs_omxil_core/core/src/
Dintel_m4v_config_parser.cpp913 uint32 nextScale = 8; in scaling_list() local
918 if(nextScale != 0) { in scaling_list()
921 nextScale = ( lastScale + delta_scale + 256 ) % 256 ; in scaling_list()
923 lastScale = ( nextScale == 0 ) ? lastScale : nextScale; in scaling_list()