Use the standard .yuv and .rgb file extensions when saving the decoded jpeg outputs (#34)

* Use the standard .yuv and .rgb file extensions when saving the decoded jpeg outputs

* modify the file description for saving

[ROCm/rocjpeg commit: 44f74c4958]
This commit is contained in:
Aryan Salmanpour
2024-06-26 09:00:45 -04:00
committed by GitHub
parent 08f7236c94
commit c2411920c0
4 changed files with 33 additions and 8 deletions
@@ -127,7 +127,7 @@ int main(int argc, char **argv) {
if (save_images) {
std::string image_save_path = output_file_path;
if (is_dir) {
rocjpeg_utils.GetOutputFileExt(decode_params.output_format, base_file_name, widths[0], heights[0], image_save_path);
rocjpeg_utils.GetOutputFileExt(decode_params.output_format, base_file_name, widths[0], heights[0], subsampling, image_save_path);
}
rocjpeg_utils.SaveImage(image_save_path, &output_image, widths[0], heights[0], subsampling, decode_params.output_format);
}