Interface PreprocessingConfig.Deinterlace.BwdifConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PreprocessingConfig.Deinterlace.BwdifConfig,PreprocessingConfig.Deinterlace.BwdifConfig.Builder
- Enclosing class:
- PreprocessingConfig.Deinterlace
public static interface PreprocessingConfig.Deinterlace.BwdifConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetDeinterlaceAllFrames()Deinterlace all frames rather than just the frames identified as interlaced.StringgetMode()Specifies the deinterlacing mode to adopt.com.google.protobuf.ByteStringgetModeBytes()Specifies the deinterlacing mode to adopt.StringgetParity()The picture field parity assumed for the input interlaced video.com.google.protobuf.ByteStringgetParityBytes()The picture field parity assumed for the input interlaced video.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getMode
String getMode()
Specifies the deinterlacing mode to adopt. The default is `send_frame`. Supported values: - `send_frame`: Output one frame for each frame - `send_field`: Output one frame for each field
string mode = 1;- Returns:
- The mode.
-
getModeBytes
com.google.protobuf.ByteString getModeBytes()
Specifies the deinterlacing mode to adopt. The default is `send_frame`. Supported values: - `send_frame`: Output one frame for each frame - `send_field`: Output one frame for each field
string mode = 1;- Returns:
- The bytes for mode.
-
getParity
String getParity()
The picture field parity assumed for the input interlaced video. The default is `auto`. Supported values: - `tff`: Assume the top field is first - `bff`: Assume the bottom field is first - `auto`: Enable automatic detection of field parity
string parity = 2;- Returns:
- The parity.
-
getParityBytes
com.google.protobuf.ByteString getParityBytes()
The picture field parity assumed for the input interlaced video. The default is `auto`. Supported values: - `tff`: Assume the top field is first - `bff`: Assume the bottom field is first - `auto`: Enable automatic detection of field parity
string parity = 2;- Returns:
- The bytes for parity.
-
getDeinterlaceAllFrames
boolean getDeinterlaceAllFrames()
Deinterlace all frames rather than just the frames identified as interlaced. The default is `false`.
bool deinterlace_all_frames = 3;- Returns:
- The deinterlaceAllFrames.
-
-