The sample decoder is crashing when doing JPEG decoding & a VPP stage for the sample JPEG attached. Its crashing only for d3d11 and works fine in d3d9 & sw modes.
To regenerate the crash, just the run the sample decode with the following params (using the sample jpeg file attached)
jpeg -hw -d3d11 -w 960 -h 480 -i ./input/Live-0-210.jpg -o ./output/Live-0-210.yuv
The actual dimension of the jpeg is 1920x960 and the above command attempts to decode the jpeg & scale it to half the original dimensions.
Curiously enough, the crash is seen only if a vpp stage is involved. It works fine even in d3d11 if we don't introduce the vpp stage.
jpeg -hw -d3d11 -w 1920 -h 960 -i ./input/Live-0-210.jpg -o ./output/Live-0-210.yuv
works fine in all modes (d3d, d3d11 & sw)
Had tried it on "Intel® Media SDK 2018 R1 - Media Samples 8.3.26.352"
Are there any corrections required in the "sample decode" to get this working?