[Album Art] macOS Ventura natively supports AVIF
Disable the compiled in AVIF support there, as the OS supports it natively. Keep the libraries for older OSes. Signed-off-by: Christopher Snowhill <kode54@gmail.com>xcode15
parent
3958af0670
commit
fceee35896
|
@ -324,6 +324,9 @@ extern NSMutableDictionary<NSString *, AlbumArtwork *> *kArtworkDictionary;
|
|||
NSImage *image = [NSImage imageNamed:imageCacheTag];
|
||||
|
||||
if(image == nil) {
|
||||
if(@available(macOS 13.0, *)) {
|
||||
image = [[NSImage alloc] initWithData:self.albumArtInternal];
|
||||
} else {
|
||||
if([AVIFDecoder isAVIFFormatForData:self.albumArtInternal]) {
|
||||
CGImageRef imageRef = [AVIFDecoder createAVIFImageWithData:self.albumArtInternal];
|
||||
if(imageRef) {
|
||||
|
@ -333,6 +336,7 @@ extern NSMutableDictionary<NSString *, AlbumArtwork *> *kArtworkDictionary;
|
|||
} else {
|
||||
image = [[NSImage alloc] initWithData:self.albumArtInternal];
|
||||
}
|
||||
}
|
||||
[image setName:imageCacheTag];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue