Enum FieldOrder
Specifies the field order of interlaced video. These values match the ones defined by various video standards.
Namespace: FFmpeg.Images
Assembly: FFmpeg.dll
Syntax
public enum FieldOrder
Fields
| Name | Description |
|---|---|
| BottomCodedTopDisplayed | Bottom field is coded first, but the top field is displayed first. This is used in certain interlacing schemes. |
| BottomFirst | Bottom field is coded first and also displayed first. This is used for bottom-first interlacing. |
| Progressive | The video is progressive, meaning it is not interlaced and each frame is a complete image. |
| TopCodedBottomDisplayed | Top field is coded first, but the bottom field is displayed first. This is used in certain interlacing schemes. |
| TopFirst | Top field is coded first and also displayed first. This is used for top-first interlacing. |
| Unknown | Field order is unknown or not specified. |