Added memoryOffset value to DNAFieldAttribute, regenerated files.

This commit is contained in:
Samuele Lorefice
2025-02-20 21:00:55 +01:00
parent b171b65aa5
commit f383debd18
939 changed files with 9636 additions and 9605 deletions

View File

@@ -15,43 +15,43 @@ namespace BlendFile.DNA {
[DNAClassAttribute(797, "FFMpegCodecData", 80)]
public class FFMpegCodecData {
[DNAFieldAttribute(0, "int", "type", "int", 4, false)]
[DNAFieldAttribute(0, "int", "type", "int", 4, false, 0)]
public int type;
[DNAFieldAttribute(1, "int", "codec", "int", 4, false)]
[DNAFieldAttribute(1, "int", "codec", "int", 4, false, 4)]
public int codec;
[DNAFieldAttribute(2, "int", "audio_codec", "int", 4, false)]
[DNAFieldAttribute(2, "int", "audio_codec", "int", 4, false, 8)]
public int audio_codec;
[DNAFieldAttribute(3, "int", "video_bitrate", "int", 4, false)]
[DNAFieldAttribute(3, "int", "video_bitrate", "int", 4, false, 12)]
public int video_bitrate;
[DNAFieldAttribute(4, "int", "audio_bitrate", "int", 4, false)]
[DNAFieldAttribute(4, "int", "audio_bitrate", "int", 4, false, 16)]
public int audio_bitrate;
[DNAFieldAttribute(5, "int", "audio_mixrate", "int", 4, false)]
[DNAFieldAttribute(5, "int", "audio_mixrate", "int", 4, false, 20)]
public int audio_mixrate;
[DNAFieldAttribute(6, "int", "audio_channels", "int", 4, false)]
[DNAFieldAttribute(6, "int", "audio_channels", "int", 4, false, 24)]
public int audio_channels;
[DNAFieldAttribute(7, "float", "audio_volume", "float", 4, false)]
[DNAFieldAttribute(7, "float", "audio_volume", "float", 4, false, 28)]
public float audio_volume;
[DNAFieldAttribute(8, "int", "gop_size", "int", 4, false)]
[DNAFieldAttribute(8, "int", "gop_size", "int", 4, false, 32)]
public int gop_size;
[DNAFieldAttribute(9, "int", "max_b_frames", "int", 4, false)]
[DNAFieldAttribute(9, "int", "max_b_frames", "int", 4, false, 36)]
public int max_b_frames;
[DNAFieldAttribute(10, "int", "flags", "int", 4, false)]
[DNAFieldAttribute(10, "int", "flags", "int", 4, false, 40)]
public int flags;
[DNAFieldAttribute(11, "int", "constant_rate_factor", "int", 4, false)]
[DNAFieldAttribute(11, "int", "constant_rate_factor", "int", 4, false, 44)]
public int constant_rate_factor;
[DNAFieldAttribute(12, "int", "ffmpeg_preset", "int", 4, false)]
[DNAFieldAttribute(12, "int", "ffmpeg_preset", "int", 4, false, 48)]
public int ffmpeg_preset;
[DNAFieldAttribute(13, "int", "rc_min_rate", "int", 4, false)]
[DNAFieldAttribute(13, "int", "rc_min_rate", "int", 4, false, 52)]
public int rc_min_rate;
[DNAFieldAttribute(14, "int", "rc_max_rate", "int", 4, false)]
[DNAFieldAttribute(14, "int", "rc_max_rate", "int", 4, false, 56)]
public int rc_max_rate;
[DNAFieldAttribute(15, "int", "rc_buffer_size", "int", 4, false)]
[DNAFieldAttribute(15, "int", "rc_buffer_size", "int", 4, false, 60)]
public int rc_buffer_size;
[DNAFieldAttribute(16, "int", "mux_packet_size", "int", 4, false)]
[DNAFieldAttribute(16, "int", "mux_packet_size", "int", 4, false, 64)]
public int mux_packet_size;
[DNAFieldAttribute(17, "int", "mux_rate", "int", 4, false)]
[DNAFieldAttribute(17, "int", "mux_rate", "int", 4, false, 68)]
public int mux_rate;
[DNAFieldAttribute(18, "void", "*_pad1", "void", 8, true)]
[DNAFieldAttribute(18, "void", "*_pad1", "void", 8, true, 72)]
public object ptr__pad1;
public FFMpegCodecData() {
this.type = default;