Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(327)

Side by Side Diff: libexif/sources/libexif/exif-tag.c

Issue 10792004: Fetch libexif 0.6.21 to include the security fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « libexif/sources/libexif/exif-entry.c ('k') | libexif/sources/libexif/exif-utils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* exif-tag.c 1 /* exif-tag.c
2 * 2 *
3 * Copyright (c) 2001 Lutz Mueller <lutz@users.sourceforge.net> 3 * Copyright (c) 2001 Lutz Mueller <lutz@users.sourceforge.net>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public 6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 {EXIF_TAG_GPS_DEST_BEARING_REF, "GPSDestBearingRef", N_("Reference for B earing of Destination"), 186 {EXIF_TAG_GPS_DEST_BEARING_REF, "GPSDestBearingRef", N_("Reference for B earing of Destination"),
187 N_("Indicates the reference used for giving the bearing to " 187 N_("Indicates the reference used for giving the bearing to "
188 "the destination point. 'T' denotes true direction and 'M' is " 188 "the destination point. 'T' denotes true direction and 'M' is "
189 "magnetic direction."), ESL_GPS}, 189 "magnetic direction."), ESL_GPS},
190 {EXIF_TAG_GPS_DEST_BEARING, "GPSDestBearing", N_("Bearing of Destination "), 190 {EXIF_TAG_GPS_DEST_BEARING, "GPSDestBearing", N_("Bearing of Destination "),
191 N_("Indicates the bearing to the destination point. The range " 191 N_("Indicates the bearing to the destination point. The range "
192 "of values is from 0.00 to 359.99."), ESL_GPS}, 192 "of values is from 0.00 to 359.99."), ESL_GPS},
193 {EXIF_TAG_GPS_DEST_DISTANCE_REF, "GPSDestDistanceRef", N_("Reference for Distance to Destination"), 193 {EXIF_TAG_GPS_DEST_DISTANCE_REF, "GPSDestDistanceRef", N_("Reference for Distance to Destination"),
194 N_("Indicates the unit used to express the distance to the " 194 N_("Indicates the unit used to express the distance to the "
195 "destination point. 'K', 'M' and 'N' represent kilometers, miles " 195 "destination point. 'K', 'M' and 'N' represent kilometers, miles "
196 "and knots."), ESL_GPS}, 196 "and nautical miles."), ESL_GPS},
197 {EXIF_TAG_GPS_DEST_DISTANCE, "GPSDestDistance", N_("Distance to Destinat ion"), 197 {EXIF_TAG_GPS_DEST_DISTANCE, "GPSDestDistance", N_("Distance to Destinat ion"),
198 N_("Indicates the distance to the destination point."), ESL_GPS}, 198 N_("Indicates the distance to the destination point."), ESL_GPS},
199 {EXIF_TAG_GPS_PROCESSING_METHOD, "GPSProcessingMethod", N_("Name of GPS Processing Method"), 199 {EXIF_TAG_GPS_PROCESSING_METHOD, "GPSProcessingMethod", N_("Name of GPS Processing Method"),
200 N_("A character string recording the name of the method used " 200 N_("A character string recording the name of the method used "
201 "for location finding. The first byte indicates the character " 201 "for location finding. The first byte indicates the character "
202 "code used, and this is followed by the name " 202 "code used, and this is followed by the name "
203 "of the method. Since the Type is not ASCII, NULL termination is " 203 "of the method. Since the Type is not ASCII, NULL termination is "
204 "not necessary."), ESL_GPS}, 204 "not necessary."), ESL_GPS},
205 {EXIF_TAG_GPS_AREA_INFORMATION, "GPSAreaInformation", N_("Name of GPS Ar ea"), 205 {EXIF_TAG_GPS_AREA_INFORMATION, "GPSAreaInformation", N_("Name of GPS Ar ea"),
206 N_("A character string recording the name of the GPS area. The " 206 N_("A character string recording the name of the GPS area. The "
(...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after
1175 exif_tag_get_support_level_in_ifd (ExifTag tag, ExifIfd ifd, ExifDataType t) 1175 exif_tag_get_support_level_in_ifd (ExifTag tag, ExifIfd ifd, ExifDataType t)
1176 { 1176 {
1177 if (ifd >= EXIF_IFD_COUNT) 1177 if (ifd >= EXIF_IFD_COUNT)
1178 return EXIF_SUPPORT_LEVEL_UNKNOWN; 1178 return EXIF_SUPPORT_LEVEL_UNKNOWN;
1179 1179
1180 if (t >= EXIF_DATA_TYPE_COUNT) 1180 if (t >= EXIF_DATA_TYPE_COUNT)
1181 return get_support_level_any_type (tag, ifd); 1181 return get_support_level_any_type (tag, ifd);
1182 1182
1183 return get_support_level_in_ifd (tag, ifd, t); 1183 return get_support_level_in_ifd (tag, ifd, t);
1184 } 1184 }
OLDNEW
« no previous file with comments | « libexif/sources/libexif/exif-entry.c ('k') | libexif/sources/libexif/exif-utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698