Package apple.avfoundation.enums
Class AVAssetReferenceRestrictions
- java.lang.Object
-
- apple.avfoundation.enums.AVAssetReferenceRestrictions
-
public final class AVAssetReferenceRestrictions extends java.lang.Object[@enum] AVAssetReferenceRestrictions These constants can be passed in to AVURLAssetReferenceRestrictionsKey to control the resolution of references to external media data. [@constant] AVAssetReferenceRestrictionForbidNone Indicates that all types of references should be followed. [@constant] AVAssetReferenceRestrictionForbidRemoteReferenceToLocal Indicates that references from a remote asset (e.g. referenced via http URL) to local media data (e.g. stored in a local file) should not be followed. [@constant] AVAssetReferenceRestrictionForbidLocalReferenceToRemote Indicates that references from a local asset to remote media data should not be followed. [@constant] AVAssetReferenceRestrictionForbidCrossSiteReference Indicates that references from a remote asset to remote media data stored at a different site should not be followed. [@constant] AVAssetReferenceRestrictionForbidLocalReferenceToLocal Indicates that references from a local asset to local media data stored outside the asset's container file should not be followed. [@constant] AVAssetReferenceRestrictionForbidAll Indicates that only references to media data stored within the asset's container file should be allowed.
-
-
Field Summary
Fields Modifier and Type Field Description static longDefaultPolicystatic longForbidAllstatic longForbidCrossSiteReferencestatic longForbidLocalReferenceToLocalstatic longForbidLocalReferenceToRemotestatic longForbidNonestatic longForbidRemoteReferenceToLocal
-
-
-
Field Detail
-
ForbidNone
public static final long ForbidNone
- See Also:
- Constant Field Values
-
ForbidRemoteReferenceToLocal
public static final long ForbidRemoteReferenceToLocal
- See Also:
- Constant Field Values
-
ForbidLocalReferenceToRemote
public static final long ForbidLocalReferenceToRemote
- See Also:
- Constant Field Values
-
ForbidCrossSiteReference
public static final long ForbidCrossSiteReference
- See Also:
- Constant Field Values
-
ForbidLocalReferenceToLocal
public static final long ForbidLocalReferenceToLocal
- See Also:
- Constant Field Values
-
ForbidAll
public static final long ForbidAll
- See Also:
- Constant Field Values
-
DefaultPolicy
public static final long DefaultPolicy
- See Also:
- Constant Field Values
-
-