Hi,
I'm working with l_ipp-samples_p_8.0.0.005, umc_video_dec_con, Linux OS. I decode my sample H.264 file: umc_video_dec_con -i test.264 -o dest_dec.yuv When I run it with Intel Inspector XE 2013 Update 9 (build 328075), I have 2 errors:
Uninitialized partial memory access umc_h264_dec_ippwrap.cpp:25; umc_h264_task_supplier.cpp:899 umc_video_dec_con
Uninitialized partial memory access umc_h264_dec_ippwrap.cpp:65; umc_h264_task_supplier.cpp:899 umc_video_dec_con
The source code is
18 IppStatus FilterDeblockingLuma_HorEdge(const IppiFilterDeblock_8u * pDeblockInfo) 19 { 20 return ippiFilterDeblockingLuma_HorEdge_H264_8u_C1IR(pDeblockInfo->pSrcDstPlane, 21 pDeblockInfo->srcDstStep, 22 pDeblockInfo->pAlpha, 23 pDeblockInfo->pBeta, 24 pDeblockInfo->pThresholds, 25 pDeblockInfo->pBs); 26 }
and
58 IppStatus FilterDeblockingChroma_VerEdge(const IppiFilterDeblock_8u * pDeblockInfo) 59 { 60 return ippiFilterDeblockingChroma_VerEdge_H264_8u_C1IR(pDeblockInfo->pSrcDstPlane, 61 pDeblockInfo->srcDstStep, 62 pDeblockInfo->pAlpha, 63 pDeblockInfo->pBeta, 64 pDeblockInfo->pThresholds, 65 pDeblockInfo->pBs); 66 }
I tried to fixed this issue but it is not so clear of how to do it. Could you please help me, how to fix this problem?