You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FFmpeg.AutoGen.Abstractions/generated/Enums.g.cs
+23-3Lines changed: 23 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -433,6 +433,10 @@ public enum AVCodecID : int
433
433
@AV_CODEC_ID_WBMP=263,
434
434
@AV_CODEC_ID_MEDIA100=264,
435
435
@AV_CODEC_ID_VQC=265,
436
+
@AV_CODEC_ID_PDV=266,
437
+
@AV_CODEC_ID_EVC=267,
438
+
@AV_CODEC_ID_RTV1=268,
439
+
@AV_CODEC_ID_VMIX=269,
436
440
/// <summary>A dummy id pointing at the start of audio codecs</summary>
437
441
@AV_CODEC_ID_FIRST_AUDIO=65536,
438
442
@AV_CODEC_ID_PCM_S16LE=65536,
@@ -642,6 +646,8 @@ public enum AVCodecID : int
642
646
@AV_CODEC_ID_FTR=86116,
643
647
@AV_CODEC_ID_WAVARC=86117,
644
648
@AV_CODEC_ID_RKA=86118,
649
+
@AV_CODEC_ID_AC4=86119,
650
+
@AV_CODEC_ID_OSQ=86120,
645
651
/// <summary>A dummy ID pointing at the start of subtitle codecs.</summary>
646
652
@AV_CODEC_ID_FIRST_SUBTITLE=94208,
647
653
@AV_CODEC_ID_DVD_SUBTITLE=94208,
@@ -685,6 +691,7 @@ public enum AVCodecID : int
685
691
@AV_CODEC_ID_DVD_NAV=98312,
686
692
@AV_CODEC_ID_TIMED_ID3=98313,
687
693
@AV_CODEC_ID_BIN_DATA=98314,
694
+
@AV_CODEC_ID_SMPTE_2038=98315,
688
695
/// <summary>codec_id is not known (like AV_CODEC_ID_NONE) but lavf should attempt to identify it</summary>
689
696
@AV_CODEC_ID_PROBE=102400,
690
697
/// <summary>_FAKE_ codec to indicate a raw MPEG-2 TS stream (only used by libavformat)</summary>
@@ -883,7 +890,6 @@ public enum AVDurationEstimationMethod : int
883
890
@AVFMT_DURATION_FROM_BITRATE=2,
884
891
}
885
892
886
-
/// <summary>@{</summary>
887
893
publicenumAVFieldOrder:int
888
894
{
889
895
@AV_FIELD_UNKNOWN=0,
@@ -966,6 +972,8 @@ public enum AVFrameSideDataType : int
966
972
@AV_FRAME_DATA_DYNAMIC_HDR_VIVID=25,
967
973
/// <summary>Ambient viewing environment metadata, as defined by H.274.</summary>
968
974
@AV_FRAME_DATA_AMBIENT_VIEWING_ENVIRONMENT=26,
975
+
/// <summary>Provide encoder-specific hinting information about changed/unchanged portions of a frame. It can be used to pass information about which macroblocks can be skipped because they didn't change from the corresponding ones in the previous frame. This could be useful for applications which know this information in advance to speed up encoding.</summary>
976
+
@AV_FRAME_DATA_VIDEO_HINT=27,
969
977
}
970
978
971
979
/// <summary>Option for overlapping elliptical pixel selectors in an image.</summary>
@@ -1087,7 +1095,7 @@ public enum AVOptionType : int
1087
1095
@AV_OPT_TYPE_CHLAYOUT=19,
1088
1096
}
1089
1097
1090
-
/// <summary>Types and functions for working with AVPacket. @{</summary>
1098
+
/// <summary>Types and functions for working with AVPacketSideData. @{</summary>
1091
1099
publicenumAVPacketSideDataType:int
1092
1100
{
1093
1101
/// <summary>An AV_PKT_DATA_PALETTE side data packet contains exactly AVPALETTE_SIZE bytes worth of palette. This side data signals that a new palette is present.</summary>
@@ -1645,8 +1653,20 @@ public enum AVPixelFormat : int
1645
1653
@AV_PIX_FMT_RGBAF32BE=220,
1646
1654
/// <summary>IEEE-754 single precision packed RGBA 32:32:32:32, 128bpp, RGBARGBA..., little-endian</summary>
1647
1655
@AV_PIX_FMT_RGBAF32LE=221,
1656
+
/// <summary>interleaved chroma YUV 4:2:2, 24bpp, data in the high bits, big-endian</summary>
1657
+
@AV_PIX_FMT_P212BE=222,
1658
+
/// <summary>interleaved chroma YUV 4:2:2, 24bpp, data in the high bits, little-endian</summary>
1659
+
@AV_PIX_FMT_P212LE=223,
1660
+
/// <summary>interleaved chroma YUV 4:4:4, 36bpp, data in the high bits, big-endian</summary>
1661
+
@AV_PIX_FMT_P412BE=224,
1662
+
/// <summary>interleaved chroma YUV 4:4:4, 36bpp, data in the high bits, little-endian</summary>
/// <summary>number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of formats might differ between versions</summary>
0 commit comments