Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 884027
Collapse All | Expand All

(-)a/samples/source/common/DumpFile.cpp (-4 / +4 lines)
Lines 2476-2482 DumpISOBoxes(LFA_FileRef file, XMP_Uns32 maxBoxLen, std::string _isoPath) Link Here
2476
					DumpTIFF(tiffContent, tiffLength, offset, "HEIF Exif", "HEIF:Exif");
2476
					DumpTIFF(tiffContent, tiffLength, offset, "HEIF Exif", "HEIF:Exif");
2477
					LFA_Seek(file, keep, SEEK_SET, &ok);
2477
					LFA_Seek(file, keep, SEEK_SET, &ok);
2478
					assertMsg("seek failed", ok);
2478
					assertMsg("seek failed", ok);
2479
					exif_item_id = NULL;
2479
					exif_item_id = 0;
2480
				}
2480
				}
2481
			}
2481
			}
2482
			//Get the data for xmp - using value from mime_item_id
2482
			//Get the data for xmp - using value from mime_item_id
Lines 2494-2500 DumpISOBoxes(LFA_FileRef file, XMP_Uns32 maxBoxLen, std::string _isoPath) Link Here
2494
					DumpXMP(xmpContent, xmpLength, offset, "XMP");
2494
					DumpXMP(xmpContent, xmpLength, offset, "XMP");
2495
					LFA_Seek(file, keep, SEEK_SET, &ok);
2495
					LFA_Seek(file, keep, SEEK_SET, &ok);
2496
					assertMsg("seek failed", ok);
2496
					assertMsg("seek failed", ok);
2497
					mime_item_id = NULL;
2497
					mime_item_id = 0;
2498
				}
2498
				}
2499
			}
2499
			}
2500
			break;
2500
			break;
Lines 2646-2652 DumpISOBoxes(LFA_FileRef file, XMP_Uns32 maxBoxLen, std::string _isoPath) Link Here
2646
					DumpTIFF(tiffContent, tiffLength, offset, "HEIF Exif", "HEIF:Exif");
2646
					DumpTIFF(tiffContent, tiffLength, offset, "HEIF Exif", "HEIF:Exif");
2647
					LFA_Seek(file, keep, SEEK_SET, &ok);
2647
					LFA_Seek(file, keep, SEEK_SET, &ok);
2648
					assertMsg("seek failed", ok);
2648
					assertMsg("seek failed", ok);
2649
					exif_item_id = NULL;
2649
					exif_item_id = 0;
2650
				}
2650
				}
2651
			}
2651
			}
2652
			//Get the data for xmp - using value from mime_item_id
2652
			//Get the data for xmp - using value from mime_item_id
Lines 2664-2670 DumpISOBoxes(LFA_FileRef file, XMP_Uns32 maxBoxLen, std::string _isoPath) Link Here
2664
					DumpXMP(xmpContent, xmpLength, offset, "XMP");
2664
					DumpXMP(xmpContent, xmpLength, offset, "XMP");
2665
					LFA_Seek(file, keep, SEEK_SET, &ok);
2665
					LFA_Seek(file, keep, SEEK_SET, &ok);
2666
					assertMsg("seek failed", ok);
2666
					assertMsg("seek failed", ok);
2667
					mime_item_id = NULL;
2667
					mime_item_id = 0;
2668
				}
2668
				}
2669
			}
2669
			}
2670
2670

Return to bug 884027