gstexiftag: Fix debug statements

This commit is contained in:
Edward Hervey 2010-06-11 08:47:27 +02:00
parent 42dd1471f8
commit f12a4e6ed6

View file

@ -1257,7 +1257,8 @@ deserialize_geo_direction (GstExifReader * exif_reader,
/* some checking */
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;
}
if (next_tagdata.count != 1) {
@ -1354,7 +1355,8 @@ deserialize_geo_elevation (GstExifReader * exif_reader,
/* some checking */
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;
}
if (next_tagdata.count != 1) {
@ -1452,7 +1454,8 @@ deserialize_speed (GstExifReader * exif_reader,
/* some checking */
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;
}
if (next_tagdata.count != 1) {