Lines Matching defs:map

59   u32 *map,
65 u32 *map,
71 u32 *map,
79 u32 *map,
86 u32 *map,
92 u32 *map,
103 Function to decode interleaved slice group map type, i.e. slice
104 group map type 0.
107 map pointer to the map
113 map slice group map is stored here
121 u32 *map,
133 ASSERT(map);
145 map[i+j] = group;
157 Function to decode dispersed slice group map type, i.e. slice
158 group map type 1.
161 map pointer to the map
167 map slice group map is stored here
175 u32 *map,
187 ASSERT(map);
195 map[i] = ((i % picWidth) + (((i / picWidth) * numSliceGroups) >> 1)) %
206 Function to decode foreground with left-over slice group map type,
207 i.e. slice group map type 2.
210 map pointer to the map
218 map slice group map is stored here
226 u32 *map,
241 ASSERT(map);
251 map[i] = numSliceGroups - 1;
265 map[ y * picWidth + x ] = group;
276 Function to decode box-out slice group map type, i.e. slice group
277 map type 3.
280 map pointer to the map
287 map slice group map is stored here
295 u32 *map,
310 ASSERT(map);
318 map[i] = 1;
334 mapUnitVacant = (map[ (u32)y * picWidth + (u32)x ] == 1) ?
338 map[ (u32)y * picWidth + (u32)x ] = 0;
383 Function to decode raster scan slice group map type, i.e. slice
384 group map type 4.
387 map pointer to the map
393 map slice group map is stored here
401 u32 *map,
413 ASSERT(map);
419 map[i] = (u32)sliceGroupChangeDirectionFlag;
421 map[i] = 1 - (u32)sliceGroupChangeDirectionFlag;
431 Function to decode wipe slice group map type, i.e. slice group map
441 map slice group map is stored here
449 u32 *map,
462 ASSERT(map);
471 map[ i * picWidth + j ] = (u32)sliceGroupChangeDirectionFlag;
473 map[ i * picWidth + j ] = 1 -
484 Function to decode macroblock to slice group map. Construction
485 of different slice group map types is handled by separate
496 map slice group map is stored here
504 u32 *map,
517 ASSERT(map);
528 H264SwDecMemset(map, 0, picSize * sizeof(u32));
548 DecodeInterleavedMap(map, pps->numSliceGroups,
553 DecodeDispersedMap(map, pps->numSliceGroups, picWidth,
558 DecodeForegroundLeftOverMap(map, pps->numSliceGroups,
563 DecodeBoxOutMap(map, pps->sliceGroupChangeDirectionFlag,
568 DecodeRasterScanMap(map,
574 DecodeWipeMap(map, pps->sliceGroupChangeDirectionFlag,
583 map[i] = pps->sliceGroupId[i];