mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
gstexiftag: Fix debug statements
This commit is contained in:
parent
42dd1471f8
commit
f12a4e6ed6
1 changed files with 6 additions and 3 deletions
|
@ -1257,7 +1257,8 @@ deserialize_geo_direction (GstExifReader * exif_reader,
|
||||||
|
|
||||||
/* some checking */
|
/* some checking */
|
||||||
if (next_tagdata.tag_type != EXIF_TYPE_RATIONAL) {
|
if (next_tagdata.tag_type != EXIF_TYPE_RATIONAL) {
|
||||||
GST_WARNING ("Invalid type %d for 0x%x", next_tagdata.tag_type);
|
GST_WARNING ("Invalid type %d for 0x%x", next_tagdata.tag_type,
|
||||||
|
next_tagdata.tag);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
if (next_tagdata.count != 1) {
|
if (next_tagdata.count != 1) {
|
||||||
|
@ -1354,7 +1355,8 @@ deserialize_geo_elevation (GstExifReader * exif_reader,
|
||||||
|
|
||||||
/* some checking */
|
/* some checking */
|
||||||
if (next_tagdata.tag_type != EXIF_TYPE_RATIONAL) {
|
if (next_tagdata.tag_type != EXIF_TYPE_RATIONAL) {
|
||||||
GST_WARNING ("Invalid type %d for 0x%x", next_tagdata.tag_type);
|
GST_WARNING ("Invalid type %d for 0x%x", next_tagdata.tag_type,
|
||||||
|
next_tagdata.tag);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
if (next_tagdata.count != 1) {
|
if (next_tagdata.count != 1) {
|
||||||
|
@ -1452,7 +1454,8 @@ deserialize_speed (GstExifReader * exif_reader,
|
||||||
|
|
||||||
/* some checking */
|
/* some checking */
|
||||||
if (next_tagdata.tag_type != EXIF_TYPE_RATIONAL) {
|
if (next_tagdata.tag_type != EXIF_TYPE_RATIONAL) {
|
||||||
GST_WARNING ("Invalid type %d for 0x%x", next_tagdata.tag_type);
|
GST_WARNING ("Invalid type %d for 0x%x", next_tagdata.tag_type,
|
||||||
|
next_tagdata.tag);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
if (next_tagdata.count != 1) {
|
if (next_tagdata.count != 1) {
|
||||||
|
|
Loading…
Reference in a new issue