summaryrefslogtreecommitdiff
path: root/src/jpg/root.zig
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-03-18 23:44:08 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2026-03-18 23:44:08 +0100
commitdd39cdcf27a4d8c2c0472f4cab2eb96fc80cf8b7 (patch)
treec7957fb82dbd435c89b0bde44daca9fa440b7a33 /src/jpg/root.zig
parent1e7b589e77c7935cbaa8381f50cdcb86c85fa532 (diff)
jpg: add JFIF segment for APP0 marker
Automatically parse APP0 as a JFIF segment. The following does not yet work: * The extended JFIF segment marked by `JFXX` is not recognized. * The thumbnail is not loaded but tossed, so it cannot be used currently
Diffstat (limited to 'src/jpg/root.zig')
-rw-r--r--src/jpg/root.zig1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jpg/root.zig b/src/jpg/root.zig
index 55b37e8..6cde610 100644
--- a/src/jpg/root.zig
+++ b/src/jpg/root.zig
@@ -2,6 +2,7 @@ const std = @import("std");
pub const Marker = @import("marker.zig").Marker;
pub const Segment = @import("segment.zig").Segment;
+pub const Jfif = @import("jfif.zig");
test {
_ = std.testing.refAllDecls(@This());