ccd813a2da
* * rocDecode/HEVC: Fixed a couple of issues with reconfiguration of decoder when video size is changed. - Picture width and height variables were interchangeably used to represent coded picture size and display size, resulting reconfiguration errors. Now we use different variables to represent coded and display sizes. - Fixed a file overwriting issue in video size change case, where the display size can remain the same when coded size changes with specific cropping offsets. * * rocDecode/HEVC: Added some fixes to decoder reconfiguration. - Added support for MD5 calculation in reconfigure flush callback. This fixed MD5 check failure on conformance streams with size changes. - Fixed total decoded frame number report with reconfigure when file dump or MD5 is not enabled. We need to call flush with reconfigure unconditionally (but with different actions). - Added the missing reconfigure flush when coded size is not changed but display size is changed. * * rocDecode/HEVC: Corrected an error in GetDecodedWidth() method. Should use coded_width_, instead of disp_width_.