We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c8f496 commit 1f97a0aCopy full SHA for 1f97a0a
src/bmffimage.cpp
@@ -29,6 +29,8 @@
29
30
enum {
31
TAG_ftyp = 0x66747970U, //!< "ftyp" File type box */
32
+ TAG_avci = 0x61766369U, //!< "avci" AVC */
33
+ TAG_avcs = 0x61766373U, //!< "avcs" AVC */
34
TAG_avif = 0x61766966U, //!< "avif" AVIF */
35
TAG_avio = 0x6176696fU, //!< "avio" AVIF */
36
TAG_avis = 0x61766973U, //!< "avis" AVIF */
@@ -116,6 +118,10 @@ static bool skipBox(uint32_t box) {
116
118
117
119
std::string BmffImage::mimeType() const {
120
switch (fileType_) {
121
+ case TAG_avci:
122
+ return "image/avci";
123
+ case TAG_avcs:
124
+ return "image/avcs";
125
case TAG_avif:
126
case TAG_avio:
127
case TAG_avis:
0 commit comments