Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavformat/
Davc.c372 int delta_scale, lastScale = 8, nextScale = 8; in ff_avc_decode_sps() local
415 nextScale = 8; in ff_avc_decode_sps()
418 if (nextScale != 0) { in ff_avc_decode_sps()
420 nextScale = (lastScale + delta_scale) & 0xff; in ff_avc_decode_sps()
422 lastScale = nextScale == 0 ? lastScale : nextScale; in ff_avc_decode_sps()
/third_party/mesa3d/src/gallium/frontends/omx/
Dvid_dec_h264_common.c162 unsigned lastScale = 8, nextScale = 8; in scaling_list() local
176 if (nextScale != 0) { in scaling_list()
178 nextScale = (lastScale + delta_scale + 256) % 256; in scaling_list()
179 if (i == 0 && nextScale == 0) { in scaling_list()
184 scalingList[list[i]] = nextScale == 0 ? lastScale : nextScale; in scaling_list()