You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ The file ReadMe.txt in a build bundle describes how to install the library on th
49
49
-[Library Initialisation and Cleanup](#InitAndCleanup)
50
50
-[Cross Platform Build and Test on Linux for MinGW](#CrossPlatformSupport)
51
51
-[Static and Shared Libraries](#StaticShared)
52
-
-[Support for bmff files (CR3, HEIF, HEIC, and AVIF)](#BMFF)
52
+
-[Support for BMFF files (e.g., CR3, HEIF, HEIC, AVIF, and JPEG XL)](#BMFF)
53
53
-[License and Support](#LicenseSupport)
54
54
-[License](#License)
55
55
-[Support](#Support)
@@ -740,7 +740,7 @@ int main(int argc, const char* argv[])
740
740
...
741
741
}
742
742
```
743
-
The use of the _**thread unsafe function**_ Exiv2::enableBMFF(true) is discussed in [2.19 Support forbmff files](#BMFF)
743
+
The use of the _**thread unsafe function**_ Exiv2::enableBMFF(true) is discussed in [Support forBMFF files (e.g., CR3, HEIF, HEIC, AVIF, and JPEG XL)](#BMFF)
744
744
745
745
[TOC](#TOC)
746
746
<div id="InitAndCleanup">
@@ -898,19 +898,19 @@ This is discussed: [https://github.com/Exiv2/exiv2/issues/1230](https://github.c
898
898
[TOC](#TOC)
899
899
<div id="BMFF">
900
900
901
-
## Support for bmff files (CR3, HEIF, HEIC, and AVIF)
901
+
## Support for BMFF files (e.g., CR3, HEIF, HEIC, AVIF, and JPEG XL)
902
902
903
-
**Attention is drawn to the possibility that bmff support may be the subject of patent rights. _Exiv2 shall not be held responsible for identifying any or all such patent rights. Exiv2 shall not be held responsible for the legal consequences of the use of this code_.**
903
+
**Attention is drawn to the possibility that BMFF support may be the subject of patent rights. _Exiv2 shall not be held responsible for identifying any or all such patent rights. Exiv2 shall not be held responsible for the legal consequences of the use of this code_.**
904
904
905
-
Access to the bmff code is guarded in two ways. Firstly, you have to build the library with the CMake option: `-DEXIV2_ENABLE_BMFF=ON`. Secondly, the application must enablebmff support at run-time by calling the following function.
905
+
Access to the BMFF code is guarded in two ways. Firstly, you have to build the library with the CMake option: `-DEXIV2_ENABLE_BMFF=ON`. Secondly, the application must enableBMFF support at run-time by calling the following function.
906
906
907
907
```cpp
908
908
EXIV2API bool enableBMFF(bool enable);
909
909
```
910
910
911
-
The return value from `enableBMFF()` is trueif the library has been build with bmff support (CMake option -DEXIV2_ENABLE_BMFF=ON).
911
+
The return value from `enableBMFF()` is trueif the library has been build with BMFF support (CMake option -DEXIV2_ENABLE_BMFF=ON).
912
912
913
-
Applications may wish to provide a preference setting to enablebmff support and thereby place the responsibility for the use of this code with the user of the application.
913
+
Applications may wish to provide a preference setting to enableBMFF support and thereby place the responsibility for the use of this code with the user of the application.
0 commit comments