Skip to content

Commit 3a4da4b

Browse files
authored
Merge pull request #1632 from jlucfarias/add-symbols-forecast
Add symbols for Forecast
2 parents f7146a4 + 55fae92 commit 3a4da4b

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/frameworks/AVFoundation/constants.m

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,11 @@
8484

8585
const AVMediaType AVMediaTypeAudio = @"soun";
8686
const AVMediaType AVMediaTypeVideo = @"vide";
87+
88+
const AVMetadataKey AVMetadataCommonKeyAlbumName = @"albumName";
89+
const AVMetadataKey AVMetadataCommonKeyArtist = @"artist";
90+
const AVMetadataKey AVMetadataCommonKeyArtwork = @"artwork";
91+
const AVMetadataKey AVMetadataCommonKeyDescription = @"description";
92+
const AVMetadataKey AVMetadataCommonKeyTitle = @"title";
93+
94+
const AVMetadataKey AVMetadataID3MetadataKeyUserURL = @"WXXX";

src/frameworks/AVFoundation/include/AVFoundation/AVMediaFormat.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
#import <Foundation/Foundation.h>
22

3+
typedef NSString *AVMetadataKey;
4+
5+
extern const AVMetadataKey AVMetadataCommonKeyAlbumName;
6+
extern const AVMetadataKey AVMetadataCommonKeyArtist;
7+
extern const AVMetadataKey AVMetadataCommonKeyArtwork;
8+
extern const AVMetadataKey AVMetadataCommonKeyDescription;
9+
extern const AVMetadataKey AVMetadataCommonKeyTitle;
10+
11+
extern const AVMetadataKey AVMetadataID3MetadataKeyUserURL;
12+
313
typedef NSString *AVMediaType;
414
typedef NSString *AVFileType;
515

0 commit comments

Comments
 (0)