public enum SignalStandardType extends Enum<SignalStandardType> implements MediaEnumerationValue
Specifies an underlying signal standard used to define the raster.
Original C name: aafSignalStandard_e
| Enum Constant and Description |
|---|
ITU1358
525/625 line progressive raster, as defined in ITU-R BT 1358 Studio
parameters of 625 and 525 line progressive television systems.
|
ITU601
525/625 line interlaced raster, as specified in ITU-R BT.601 Studio
encoding parameters of digital television for standard 4:3 and wide screen 16:9
aspect ratios.
|
None
No defined signal standard.
|
SMPTE274M
1125 line raster, as specified in SMPTE 247M Television -
1920 x 1080 Image Sample Structure, Digital Representation and Digital Timing
Reference Sequences for Multiple Picture Rates.
|
SMPTE296M
720 line progressive raster, as specified in SMPTE 296M Television -
1280 x 720 Progressive Image Sample Structure - Analog and Digital Representation
and Analog Interface.
|
SMPTE347M
540 Mbit/s mappings, as specified in SMPTE 247M Television -
540 Mb/s Serial Digital Interface - Source Image Format Mapping.
|
SMPTE349M
1485 Mbit/s mappings, as specified in SMPTE 349M Television - Transport of
Alternate Source Image Formats Through SMPTE 292M.
|
| Modifier and Type | Method and Description |
|---|---|
String |
symbol()
Provides a name for the enumeration value that can be used in XML serialisation.
|
long |
value()
Returns the unique integer value associated with an enumeration value, either according
to the AAF specification and/or the current AAF meta dictionary.
|
static SignalStandardType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignalStandardType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOfnamepublic static final SignalStandardType None
No defined signal standard.
public static final SignalStandardType ITU601
525/625 line interlaced raster, as specified in ITU-R BT.601 Studio encoding parameters of digital television for standard 4:3 and wide screen 16:9 aspect ratios.
public static final SignalStandardType ITU1358
525/625 line progressive raster, as defined in ITU-R BT 1358 Studio parameters of 625 and 525 line progressive television systems.
.public static final SignalStandardType SMPTE347M
540 Mbit/s mappings, as specified in SMPTE 247M Television - 540 Mb/s Serial Digital Interface - Source Image Format Mapping.
public static final SignalStandardType SMPTE274M
1125 line raster, as specified in SMPTE 247M Television - 1920 x 1080 Image Sample Structure, Digital Representation and Digital Timing Reference Sequences for Multiple Picture Rates.
public static final SignalStandardType SMPTE296M
720 line progressive raster, as specified in SMPTE 296M Television - 1280 x 720 Progressive Image Sample Structure - Analog and Digital Representation and Analog Interface.
public static final SignalStandardType SMPTE349M
1485 Mbit/s mappings, as specified in SMPTE 349M Television - Transport of Alternate Source Image Formats Through SMPTE 292M.
public static SignalStandardType[] values()
for (SignalStandardType c : SignalStandardType.values()) System.out.println(c);
public static SignalStandardType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null@Int64 public long value()
MediaEnumerationValueReturns the unique integer value associated with an enumeration value, either according to the AAF specification and/or the current AAF meta dictionary.
value in interface MediaEnumerationValuepublic String symbol()
MediaEnumerationValueProvides a name for the enumeration value that can be used in XML serialisation. The name is unique within the namespace of the owning type.
As an example, the ChannelStatusModeType value ChannelStatusModeType.Fixed
value has the name "Fixed" and symbol "ChannelStatusMode_Fixed".
symbol in interface MediaEnumerationValue(c)2007-2016 Richard Cartwright, all rights reserved. Licensed under Apache 2 license and subject to the AMWA IPR policy.