this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #1632 from jlucfarias/add-symbols-forecast

Add symbols for Forecast

authored by

CuriousTommy and committed by
GitHub
3a4da4b7 f7146a45

+18
+8
src/frameworks/AVFoundation/constants.m
··· 84 84 85 85 const AVMediaType AVMediaTypeAudio = @"soun"; 86 86 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";
+10
src/frameworks/AVFoundation/include/AVFoundation/AVMediaFormat.h
··· 1 1 #import <Foundation/Foundation.h> 2 2 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 + 3 13 typedef NSString *AVMediaType; 4 14 typedef NSString *AVFileType; 5 15