From 06d0175f6fb917baffbbe1fd03afb92fda15914e Mon Sep 17 00:00:00 2001 From: Dirk Farin Date: Mon, 4 Nov 2024 22:15:53 +0100 Subject: [PATCH] add 'skip' as a synonym for 'free' --- libheif/box.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libheif/box.cc b/libheif/box.cc index e5446cf9c9..875c1abf53 100644 --- a/libheif/box.cc +++ b/libheif/box.cc @@ -461,6 +461,7 @@ Error Box::read(BitstreamRange& range, std::shared_ptr* result, const heif_ break; case fourcc("free"): + case fourcc("skip"): box = std::make_shared(); break;