mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
validate: ssim: Minor debug message enhancements
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5666>
This commit is contained in:
parent
ad68ce7f64
commit
d81fe1352c
1 changed files with 2 additions and 2 deletions
|
@ -712,7 +712,7 @@ gst_validate_ssim_compare_image_file (GstValidateSsim * self,
|
|||
|
||||
if (!real_ref_file) {
|
||||
GST_VALIDATE_REPORT (self, GENERAL_INPUT_ERROR,
|
||||
"Could find ref file for %s", ref_file);
|
||||
"Could not find ref file: %s for file: %s", ref_file, file);
|
||||
goto fail;
|
||||
}
|
||||
|
||||
|
@ -848,7 +848,7 @@ _check_directory (GstValidateSsim * self, const gchar * ref_dir,
|
|||
gchar *ref_file = NULL;
|
||||
|
||||
if (!g_file_test (compared_file, G_FILE_TEST_IS_REGULAR)) {
|
||||
GST_INFO_OBJECT (self, "Could not find file %s", compared_file);
|
||||
GST_ERROR_OBJECT (self, "Could not find file %s", compared_file);
|
||||
nnotfound++;
|
||||
res = FALSE;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue