Issue:
Quite simple this time.
For AVC specifically encode summary after completion shows misaligned numbers for it's avgQP measurements. (shifted dot)
HEVC works fine, and AV1 encode does not show avgQP values in summary.
Issue is also specific to VBR encodes. CQP reports avgQP as expected (as CQP, of course).
Command:
%~dp0\VCEEncC64.exe -i %1 -o "%~n1_test%~x1" --avsw --codec avc --vbr 15000 --max-bitrate 45000 --bframes 2 --audio-copy
Observed behaviour:
encoded 500 frames, 517.60 fps, 15780.06 kbps, 18.81 MB
encode time 0:00:00, CPULoad: 0.4%
frame type IDR 1
frame type I 1, avgQP 24576.00, total size 0.22 MB
frame type P 167, avgQP 31641.29, total size 16.41 MB
frame type B 332, avgQP 35065.83, total size 2.18 MB
avgQP values are improperly rounded.
24.58 is presented as 24576.00,
31.64 is presented as 31641.29
35.07 is presented as 35065.83
Expected behaviour:
avgQP should be presented properly.