Lines Matching refs:group

103             Function to decode interleaved slice group map type, i.e. slice
104 group map type 0.
109 runLength run_length[] values for each slice group
113 map slice group map is stored here
129 u32 i,j, group;
140 for (group = 0; group < numSliceGroups && i < picSize;
141 i += runLength[group++])
143 ASSERT(runLength[group] <= picSize);
144 for (j = 0; j < runLength[group] && i + j < picSize; j++)
145 map[i+j] = group;
157 Function to decode dispersed slice group map type, i.e. slice
158 group map type 1.
167 map slice group map is stored here
206 Function to decode foreground with left-over slice group map type,
207 i.e. slice group map type 2.
218 map slice group map is stored here
237 u32 group;
253 for (group = numSliceGroups - 1; group--; )
255 ASSERT( topLeft[group] <= bottomRight[group] &&
256 bottomRight[group] < picSize );
257 yTopLeft = topLeft[group] / picWidth;
258 xTopLeft = topLeft[group] % picWidth;
259 yBottomRight = bottomRight[group] / picWidth;
260 xBottomRight = bottomRight[group] % picWidth;
265 map[ y * picWidth + x ] = group;
276 Function to decode box-out slice group map type, i.e. slice group
282 unitsInSliceGroup0 mbs on slice group 0
287 map slice group map is stored here
383 Function to decode raster scan slice group map type, i.e. slice
384 group map type 4.
393 map slice group map is stored here
431 Function to decode wipe slice group map type, i.e. slice group map
441 map slice group map is stored here
484 Function to decode macroblock to slice group map. Construction
485 of different slice group map types is handled by separate
486 functions defined above. See standard for details how slice group
496 map slice group map is stored here
525 /* just one slice group -> all macroblocks belong to group 0 */