Enum PictureType
Specifies different types of picture frames used in video coding standards.
Namespace: FFmpeg.Utils
Assembly: FFmpeg.dll
Syntax
public enum PictureType
Fields
| Name | Description |
|---|---|
| BiDirectional | Bi-directionally predicted picture, also known as a B-frame. Corresponds to AutoGen._AVPictureType.AV_PICTURE_TYPE_B. |
| BiType | BI type picture, combining intra and inter-frame characteristics. Corresponds to AutoGen._AVPictureType.AV_PICTURE_TYPE_BI. |
| GlobalMotionCompensated | S(GMC)-VOP (Global Motion Compensation) picture, used in MPEG-4. Corresponds to AutoGen._AVPictureType.AV_PICTURE_TYPE_S. |
| Intra | Intra-coded picture, also known as an I-frame. Corresponds to AutoGen._AVPictureType.AV_PICTURE_TYPE_I. |
| None | Undefined picture type. Corresponds to AutoGen._AVPictureType.AV_PICTURE_TYPE_NONE. |
| Predicted | Predicted picture, also known as a P-frame. Corresponds to AutoGen._AVPictureType.AV_PICTURE_TYPE_P. |
| SwitchingIntra | Switching Intra picture, also known as an SI-frame. Corresponds to AutoGen._AVPictureType.AV_PICTURE_TYPE_SI. |
| SwitchingPredicted | Switching Predicted picture, also known as an SP-frame. Corresponds to AutoGen._AVPictureType.AV_PICTURE_TYPE_SP. |