mirror of https://github.com/darlinghq/darling
chore: add symbols for Forecast
This commit is contained in:
parent
f7146a4543
commit
55fae925b9
|
|
@ -84,3 +84,11 @@ const AVLayerVideoGravity AVLayerVideoGravityResizeAspectFill = @"AVLayerVideoGr
|
|||
|
||||
const AVMediaType AVMediaTypeAudio = @"soun";
|
||||
const AVMediaType AVMediaTypeVideo = @"vide";
|
||||
|
||||
const AVMetadataKey AVMetadataCommonKeyAlbumName = @"albumName";
|
||||
const AVMetadataKey AVMetadataCommonKeyArtist = @"artist";
|
||||
const AVMetadataKey AVMetadataCommonKeyArtwork = @"artwork";
|
||||
const AVMetadataKey AVMetadataCommonKeyDescription = @"description";
|
||||
const AVMetadataKey AVMetadataCommonKeyTitle = @"title";
|
||||
|
||||
const AVMetadataKey AVMetadataID3MetadataKeyUserURL = @"WXXX";
|
||||
|
|
|
|||
|
|
@ -1,5 +1,15 @@
|
|||
#import <Foundation/Foundation.h>
|
||||
|
||||
typedef NSString *AVMetadataKey;
|
||||
|
||||
extern const AVMetadataKey AVMetadataCommonKeyAlbumName;
|
||||
extern const AVMetadataKey AVMetadataCommonKeyArtist;
|
||||
extern const AVMetadataKey AVMetadataCommonKeyArtwork;
|
||||
extern const AVMetadataKey AVMetadataCommonKeyDescription;
|
||||
extern const AVMetadataKey AVMetadataCommonKeyTitle;
|
||||
|
||||
extern const AVMetadataKey AVMetadataID3MetadataKeyUserURL;
|
||||
|
||||
typedef NSString *AVMediaType;
|
||||
typedef NSString *AVFileType;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue