Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/parsers/tiff/makernote_dispatcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,11 @@ pub fn dispatch_makernote_with_context_and_values(

// Smartphones
"apple" => Some(Box::new(apple::AppleParser)),
"google" => Some(Box::new(google::GoogleParser)),
// "google" is absent on purpose: there is no fabricated `google`
// parser to dispatch to. ExifTool's real Google MakerNote table
// (Google::HDRPlusMakerNote) is string-id-keyed and reads an
// encrypted/gzipped protobuf blob, not a numeric TIFF IFD, so it
// can't be reached through this Make-keyed dispatch at all.
// "microsoft" | "microsoft corporation" is absent on purpose: there is
// no fabricated `microsoft` parser to dispatch to. MakerNotes.pm has
// no MakerNoteMicrosoft TIFF-IFD dispatch entry at all -- Microsoft's
Expand Down
Loading
Loading