@@ -325,21 +325,23 @@ struct TileComponent : public Rect32
325325 * @param block @ref DecompressBlockExec
326326 */
327327 template <typename T>
328- void postProcess (T* srcData, DecompressBlockExec* block)
328+ void postProcess (T* srcData, t1:: DecompressBlockExec* block)
329329 {
330330 if (block->roishift )
331331 {
332332 if (block->qmfbid == 1 )
333- postDecompressImpl<T, RoiShiftFilter<T>>(srcData, block, (uint16_t )block->cblk ->width ());
333+ postDecompressImpl<T, t1::RoiShiftFilter<T>>(srcData, block,
334+ (uint16_t )block->cblk ->width ());
334335 else
335- postDecompressImpl<T, RoiScaleFilter<T>>(srcData, block, (uint16_t )block->cblk ->width ());
336+ postDecompressImpl<T, t1::RoiScaleFilter<T>>(srcData, block,
337+ (uint16_t )block->cblk ->width ());
336338 }
337339 else
338340 {
339341 if (block->qmfbid == 1 )
340- postDecompressImpl<T, ShiftFilter<T>>(srcData, block, (uint16_t )block->cblk ->width ());
342+ postDecompressImpl<T, t1:: ShiftFilter<T>>(srcData, block, (uint16_t )block->cblk ->width ());
341343 else
342- postDecompressImpl<T, ScaleFilter<T>>(srcData, block, (uint16_t )block->cblk ->width ());
344+ postDecompressImpl<T, t1:: ScaleFilter<T>>(srcData, block, (uint16_t )block->cblk ->width ());
343345 }
344346 }
345347
@@ -351,7 +353,7 @@ struct TileComponent : public Rect32
351353 * @param stride source data stride
352354 */
353355 template <typename T>
354- void postProcessHT (T* srcData, DecompressBlockExec* block, uint16_t stride)
356+ void postProcessHT (T* srcData, t1:: DecompressBlockExec* block, uint16_t stride)
355357 {
356358 if (block->roishift )
357359 {
@@ -405,7 +407,7 @@ struct TileComponent : public Rect32
405407 * @param stride source data stride
406408 */
407409 template <typename T, typename F>
408- void postDecompressImpl (T* srcData, DecompressBlockExec* block, uint16_t stride)
410+ void postDecompressImpl (T* srcData, t1:: DecompressBlockExec* block, uint16_t stride)
409411 {
410412 auto cblk = block->cblk ;
411413 bool empty = cblk->dataChunksEmpty ();
0 commit comments