diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2023-08-17 17:10:12 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2023-08-17 17:10:12 +0200 |
commit | 008bc99860fd353a5da5d06e6be5937f4a358aed (patch) | |
tree | d50b38f704b90b83895a21fd610bcf78c31b2cc9 /src/photos | |
parent | 4ec8ba6ace7234ddc24a7d362a34d9055a83812c (diff) | |
parent | 7eef6a59ba38582bed5d459974211eb1f53e1f5d (diff) |
Merge branch 'release/debian/0.32.2-1'debian/0.32.2-1
Diffstat (limited to 'src/photos')
-rw-r--r-- | src/photos/HeifSupport.vala | 2 | ||||
-rw-r--r-- | src/photos/JfifSupport.vala | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/photos/HeifSupport.vala b/src/photos/HeifSupport.vala index 0c05e02..58b9d9d 100644 --- a/src/photos/HeifSupport.vala +++ b/src/photos/HeifSupport.vala @@ -5,7 +5,7 @@ */ class HeifFileFormatProperties : PhotoFileFormatProperties { - private static string[] KNOWN_EXTENSIONS = { "heif", "heic" }; + private static string[] KNOWN_EXTENSIONS = { "heif", "heic", "hif" }; private static string[] KNOWN_MIME_TYPES = { "image/heif" }; private static HeifFileFormatProperties instance = null; diff --git a/src/photos/JfifSupport.vala b/src/photos/JfifSupport.vala index 0de45f8..27a8b11 100644 --- a/src/photos/JfifSupport.vala +++ b/src/photos/JfifSupport.vala @@ -223,7 +223,7 @@ namespace Jpeg { public bool is_sof() { // FFCn is SOF unless n is a multiple of 4 > 0 (FFC4, FFC8, FFCC) - if ((this & 0xC0) != 0xC0) { + if ((this >> 4) != 0xC) { return false; } |