forked from hfiguiere/exifprobe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maker_sanyo.c
633 lines (596 loc) · 24.3 KB
/
maker_sanyo.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* EXIFPROBE - TIFF/JPEG/EXIF image file probe */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* Copyright (C) 2002,2005 by Duane H. Hesser. All rights reserved. */
/* */
/* See the file LICENSE.EXIFPROBE for terms of use. */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
#ifndef lint
static char *ModuleId = "@(#) $Id: maker_sanyo.c,v 1.23 2005/07/24 22:56:27 alex Exp $";
#endif
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* sanyo camera maker-specific routines */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
/* The information coded here is largely due to John Hawkins as shown */
/* at: */
/* http://www.exif.org/makernotes/SanyoMakerNote.html */
/* (John even lists the JPEG thumbnail in TIFF makernotes and the */
/* Epson PrintIM tag!) */
/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include "defs.h"
#include "datadefs.h"
#include "maker_datadefs.h"
#include "summary.h"
#include "maker.h"
#include "misc.h"
#include "tags.h"
#include "maker_extern.h"
#include "extern.h"
extern struct camera_id sanyo_model_id[];
/* Find the identifying number assigned to known Sanyo camera models. */
/* This number is used to dispatch print and interpret routines */
/* approopriate to the current image. */
int
sanyo_model_number(char *model,char *software)
{
struct camera_id *model_id;
int number = NO_MODEL;
for(model_id = &sanyo_model_id[0]; model_id && model_id->name; ++model_id)
{
if(strncasecmp(model,model_id->name,model_id->namelen) == 0)
{
number = model_id->id;
setnoteversion(model_id->noteversion);
setnotetagset(model_id->notetagset); /* info only */
break;
}
}
return(number);
}
/* Dispatch a print routine based upon model */
void
print_sanyo_makervalue(struct ifd_entry *entry_ptr,int make,int model,
char *prefix)
{
int noteversion = 0;
noteversion = getnoteversion();
if(entry_ptr && (PRINT_VALUE))
{
switch(noteversion)
{
case 1:
print_sanyo1_makervalue(entry_ptr,make,model,prefix);
sanyo1_interpret_value(entry_ptr);
break;
default:
print_value(entry_ptr,PREFIX);
break;
}
}
}
/* Model-specific print routine for sanyo cameras. This routine is */
/* responsible for picking off any direct entry tags which are */
/* peculiar and will not be handled properly by print_value() */
/* (usually UNDEFINED values which fit in the 4-byte entry value). If */
/* there are no such entries, this function simply calls */
/* print_value(). */
void
print_sanyo1_makervalue(struct ifd_entry *entry_ptr,int make,int model,
char *prefix)
{
if(entry_ptr && (PRINT_VALUE))
{
switch(entry_ptr->tag)
{
default:
print_value(entry_ptr,PREFIX);
break;
}
}
}
/* Dispatch a routine to decode and print offset values for sanyo */
/* cameras. */
void
print_sanyo_offset_makervalue(FILE *inptr,unsigned short byteorder,
struct ifd_entry *entry_ptr,unsigned long fileoffset_base,
struct image_summary *summary_entry,char *parent_name,char*prefix,
int indent,int make,int model,int at_offset)
{
int noteversion = 0;
noteversion = getnoteversion();
if(entry_ptr)
{
switch(noteversion)
{
case 1:
sanyo1_offset_makervalue(inptr,byteorder,entry_ptr,
fileoffset_base,summary_entry,
parent_name,prefix,indent,
make,model,at_offset);
sanyo1_interpret_offset_makervalue(inptr,byteorder,entry_ptr,
fileoffset_base);
break;
default:
print_generic_offset_makervalue(inptr,byteorder,entry_ptr,
fileoffset_base,parent_name,prefix,indent,
make,model,at_offset);
break;
}
}
}
/* Model-specific routine to print UNDEFINED values found at offsets */
/* in sanyo makernotes. One of these may be supplied for each model */
/* with unique UNDEFINED tags. */
void
sanyo1_offset_makervalue(FILE *inptr,unsigned short byteorder,
struct ifd_entry *entry_ptr,unsigned long fileoffset_base,
struct image_summary *summary_entry,char *parent_name,char*prefix,
int indent,int make,int model,int at_offset)
{
unsigned long value_offset;
unsigned long dumplength;
unsigned long count;
unsigned short marker;
unsigned long max_offset = 0;
char *nameoftag;
char *fulldirname = NULL;
int status = 0;
int chpr = 0;
if(entry_ptr)
{
nameoftag = maker_tagname(entry_ptr->tag,make,model);
fulldirname = splice(parent_name,".",nameoftag);
value_offset = fileoffset_base + entry_ptr->value;
count = entry_ptr->count;
switch(entry_ptr->tag)
{
case 0x0100: /* Jpeg Thumbnail in TIFF MakerNote */
if(at_offset && (PRINT_SECTION))
{
print_tag_address(VALUE_AT_OFFSET,value_offset,indent,prefix);
extraindent(4);
chpr += printf("# Start of JPEG Thumbnail from MakerNote");
chpr += printf(" length %ld",count);
}
else if(!at_offset && (PRINT_VALUE))
{
if(!(PRINT_OFFSET))
chpr += printf("@%lu:%lu",value_offset,entry_ptr->count);
else
chpr += printf(":%lu", entry_ptr->count);
if(!(PRINT_VALUE_AT_OFFSET))
chpr += printf(" # UNDEFINED");
}
if((PRINT_SECTION) || (PRINT_SEGMENT))
chpr = newline(chpr);
marker = read_ushort(inptr,TIFF_MOTOROLA,value_offset);
max_offset = process_jpeg_segments(inptr,value_offset,marker,
count,summary_entry,fulldirname,
prefix,indent+(SUBINDENT * 2));
if(at_offset)
{
if((PRINT_SECTION))
{
if((status = jpeg_status(0) == JPEG_EARLY_EOI))
chpr = newline(chpr);
jpeg_status(status);
print_tag_address(VALUE_AT_OFFSET,value_offset + count - 1,
indent,"-");
extraindent(SUBINDENT);
chpr += printf("# End of JPEG Thumbnail from MakerNote");
if((PRINT_ENTRY) && !(PRINT_VALUE))
chpr = newline(chpr);
}
}
print_jpeg_status();
if(marker && summary_entry)
{
/* The new one is on the end of the chain */
if((summary_entry = last_summary_entry(summary_entry)))
{
summary_entry->filesubformat |= FILESUBFMT_MNOTE;
summary_entry->datatype = MAKER_IFD;
summary_entry->subfiletype = THUMBNAIL_TYPE;
}
}
/* make certain we're at the end */
clearerr(inptr);
fseek(inptr,value_offset + count,SEEK_SET);
break;
case 0x0e00: /* PrintIM (Epson Print Image matching) */
if(!at_offset && (PRINT_VALUE))
{
if(!(PRINT_OFFSET))
{
chpr += printf("@%lu:%lu",value_offset,count);
chpr = newline(chpr);
}
}
process_pim(inptr,byteorder,entry_ptr->value,fileoffset_base,
count,nameoftag,parent_name,prefix,indent);
break;
case 0x0f00: /* Data */
if(at_offset && (PRINT_ENTRY))
{
print_tag_address(ENTRY,value_offset,indent,prefix);
print_makertagid(entry_ptr,23," : ",make,model);
chpr += printf("length %-9lu # UNDEFINED", count);
if(Max_undefined == 0)
{
if(chpr)
printred(" (not dumped, use -U)");
}
else
{
if((Max_undefined == DUMPALL) || (Max_undefined > count))
dumplength = count;
else
dumplength = Max_undefined;
chpr = newline(chpr);
hexdump(inptr,value_offset,count,dumplength,12,
indent,SUBINDENT);
chpr = newline(1);
}
}
else if(!at_offset && (PRINT_VALUE))
{
if(!(PRINT_OFFSET))
chpr += printf("@%lu:%lu",value_offset,entry_ptr->count);
else
chpr += printf(":%lu", entry_ptr->count);
if(!(PRINT_VALUE_AT_OFFSET))
chpr += printf(" # UNDEFINED");
}
/* make certain we're at the end */
fseek(inptr,value_offset + count,SEEK_SET);
break;
default:
print_generic_offset_makervalue(inptr,byteorder,entry_ptr,
fileoffset_base,fulldirname,prefix,indent,
make,model,at_offset);
break;
}
if(fulldirname)
free(fulldirname);
}
setcharsprinted(chpr);
}
/* sanyo-specific tagnames for makernotes. */
/* The tagname routine is the first place in the code path which */
/* requires knowledge of the note version. If the version is not */
/* given in the model table (e.g. the model is unknown), then switch */
/* code in find_maker_scheme() should have set it. This routine */
/* repeats the check for non-zero noteversion and is prepared to set */
/* the noteversion first time through, but should never need to do */
/* so. Noteversion should always be non-zero; it should be set to -1 */
/* if generic processing is required. */
char *
maker_sanyo_tagname(unsigned short tag,int model)
{
char *tagname = CNULL;
int noteversion = 0;
if(((noteversion = getnoteversion()) == 0))
{
/* Need more model samples before it is safe to assume a */
/* default */
noteversion = 1;
setnoteversion(1);
}
switch(noteversion)
{
case 1:
tagname = maker_sanyo1_tagname(tag,model);
break;
default:
break;
}
/* If no model-specific tag is found, check "generic" tags */
if(tagname == NULL)
{
switch(tag)
{
case 0x0e00: tagname = "PrintIM"; break;
default: break;
}
}
return(tagname);
}
char *
maker_sanyo1_tagname(unsigned short tag,int model)
{
char *tagname = CNULL;
switch(tag)
{
case 0x0100: tagname = "JpegThumbnail"; break;
case 0x0200: tagname = "SpecialMode"; break;
case 0x0201: tagname = "Quality"; break;
case 0x0202: tagname = "Macro"; break;
case 0x0204: tagname = "DigiZoom"; break;
case 0x0207: tagname = "SoftwareRelease"; break;
case 0x0208: tagname = "PictureInfo"; break;
case 0x0209: tagname = "CameraID"; break;
case 0x020e: tagname = "SeqShotMethod"; break;
case 0x020f: tagname = "WideRange"; break;
case 0x0210: tagname = "ColorAdjMode"; break;
case 0x0213: tagname = "QuickShot"; break;
case 0x0214: tagname = "SelfTImer"; break;
case 0x0216: tagname = "VoiceMemo"; break;
case 0x0217: tagname = "RecordShutterRel"; break;
case 0x0218: tagname = "FlickerReduce"; break;
case 0x0219: tagname = "OpticalZoom"; break;
case 0x021b: tagname = "DigitalZoom"; break;
case 0x021d: tagname = "LightSourceSpecial"; break;
case 0x021e: tagname = "Resaved"; break;
case 0x021f: tagname = "SceneSelect"; break;
case 0x0223: tagname = "ManualFocalDist"; break;
case 0x0224: tagname = "SeqShotIntvl"; break;
case 0x0225: tagname = "FlashMode"; break;
case 0x0e00: tagname = "PrintIM"; break;
case 0x0f00: tagname = "Data"; break;
default: break;
}
setnotetagset(1);
return(tagname);
}
void
sanyo1_interpret_value(struct ifd_entry *entry_ptr)
{
int chpr = 0;
if(entry_ptr && (PRINT_VALUE))
{
switch(entry_ptr->tag)
{
case 0x0201: /* Quality */
print_startvalue();
/* ###%%% is this related to image size, e.g. 640x480? */
/* This tag is the same tag number as used by the */
/* Olympus, Epson, and Minolta F100, except that "super */
/* high" + "super fine" would give a (short) value of 34, */
/* which is the value used for uncompressed tiff in the */
/* Epson at 2048x1536. */
switch(entry_ptr->value & 0xff)
{
case 0: chpr += printf("very low res,"); break;
case 1: chpr += printf("low res,"); break;
case 2: chpr += printf("medium low res,"); /* 640 x 480 */ break;
case 3: chpr += printf("medium res,"); break;
case 4: chpr += printf("medium high res,"); break;
case 5: chpr += printf("high res,"); break;
case 6: chpr += printf("very high res,"); break;
case 7: chpr += printf("super high"); break;
default: printred("undefined"); break;
}
/* ###%%% is this related to compression, e.g TIFF vs */
/* JPEG ??? */
switch((entry_ptr->value >> 8) & 0xff)
{
case 0: chpr += printf(" normal"); break;
case 1: chpr += printf(" fine"); break;
case 2: chpr += printf(" super fine"); break;
}
print_endvalue();
break;
case 0x0202: /* Macro */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Normal"); break;
case 1: chpr += printf("Macro"); break;
case 2: chpr += printf("View"); break;
case 3: chpr += printf("Manual"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x020e: /* Sequential Shot Method */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("none"); break;
case 1: chpr += printf("Standard"); break;
case 2: chpr += printf("Best"); break;
case 3: chpr += printf("Exposure Adjust"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x020f: /* Wide Range */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Off"); break;
case 1: chpr += printf("On"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x0210: /* Color Adjustment Mode */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Off"); break;
case 1: chpr += printf("On"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x0213: /* Quick Shot */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Off"); break;
case 1: chpr += printf("On"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x0214: /* Self Timer */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Off"); break;
case 1: chpr += printf("On"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x0216: /* Voice Memo */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Off"); break;
case 1: chpr += printf("On"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x0217: /* Record Shutter Release */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Held"); break;
case 1: chpr += printf("Start/Stop"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x0218: /* Flicker Reduce */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Off"); break;
case 1: chpr += printf("On"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x0219: /* Optical Zoom */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Disabled"); break;
case 1: chpr += printf("Enabled"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x021b: /* Digital Zoom */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Disabled"); break;
case 1: chpr += printf("Enabled"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x021d: /* Light Source Special */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Off"); break;
case 1: chpr += printf("On"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x021e: /* Resaved */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("No"); break;
case 1: chpr += printf("Yes"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x021f: /* Scene Select */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Off"); break;
case 1: chpr += printf("Sport"); break;
case 2: chpr += printf("TV?"); break;
case 3: chpr += printf("Night"); break;
case 4: chpr += printf("User 1"); break;
case 5: chpr += printf("User 2"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x0224: /* Sequential Shot Interval */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("5 frames/sec"); break;
case 1: chpr += printf("10 frames/sec"); break;
case 2: chpr += printf("15 frames/sec?"); break;
case 3: chpr += printf("20 frames/sec"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
case 0x0225: /* Flash Mode */
print_startvalue();
switch(entry_ptr->value)
{
case 0: chpr += printf("Auto"); break;
case 1: chpr += printf("Force"); break;
case 2: chpr += printf("Disabled"); break;
case 3: chpr += printf("Redeye"); break;
default: printred("undefined"); break;
}
print_endvalue();
break;
default:
break;
}
}
setcharsprinted(chpr);
}
void
sanyo1_interpret_offset_makervalue(FILE *inptr,unsigned short byteorder,
struct ifd_entry *entry_ptr,unsigned long fileoffset_base)
{
unsigned long offset,value;
int chpr = 0;
if(entry_ptr && (PRINT_VALUE))
{
offset = entry_ptr->value + fileoffset_base;
switch(entry_ptr->tag)
{
case 0x0200: /* SpecialMode */
value = read_ulong(inptr,byteorder,offset);
print_startvalue();
switch(value)
{
case 0: chpr += printf("Normal"); break;
case 1: chpr += printf("Unkown"); break;
case 2: chpr += printf("Fast"); break;
case 3: chpr += printf("Panorama,");
value = read_ulong(inptr,byteorder,HERE);
chpr += printf("#%lu,",value);
value = read_ulong(inptr,byteorder,HERE);
switch(value)
{
case 1: chpr += printf(" Left to Right"); break;
case 2: chpr += printf(" Right to Left"); break;
case 3: chpr += printf(" Bottom to Top"); break;
case 4: chpr += printf(" Top to Bottom"); break;
default: printred(" undefined"); break;
}
break;
default: printred("undefined"); break;
}
print_endvalue();
break;
default:
break;
}
}
setcharsprinted(chpr);
}