Picture file sample: Bug fix. (#533)

* * rocDecode/Picture file sample: Fixed a bug that can result in incorrect output frame count when reconfiguration occurs and with more than one iterations.

* * rocDecode: Updated change log.
This commit is contained in:
jeffqjiangNew
2025-03-18 15:17:52 -04:00
committed by GitHub
szülő 86d5d51d09
commit 34cdd7f709
2 fájl változott, egészen pontosan 6 új sor hozzáadva és 3 régi sor törölve
+4 -2
Fájl megtekintése
@@ -12,11 +12,13 @@ Full documentation for rocDecode is available at [https://rocm.docs.amd.com/proj
* HEVC stream bit depth change handling through decoder reconfiguration.
* rocDecode now uses the Cmake CMAKE_PREFIX_PATH directive.
### Changed
### Optimized
* Bitstream type detection optimization in bitstream reader.
### Removed
### Resolved issues
* Fixed a bug in picture files sample "videoDecodePicFiles" that can results in incorrect output frame count.
## rocDecode 0.10.0 for ROCm 6.4
@@ -283,6 +283,7 @@ int main(int argc, char **argv) {
for (int i = 0; i < num_iterations; i++) {
int num_frames_decoded_in_loop = 0;
pkg_flags = 0;
for ( const char* file_name : file_names) {
std::ifstream in_file(file_name, std::ios::binary);
if (!in_file) {
@@ -333,8 +334,8 @@ int main(int argc, char **argv) {
break;
}
}
n_frame += viddec->GetNumOfFlushedFrames();
}
n_frame += viddec->GetNumOfFlushedFrames();
std::cout << "info: Total pictures decoded: " << n_pic_decoded << std::endl;
std::cout << "info: Total frames output/displayed: " << n_frame << std::endl;