-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTheorafile.cs
2188 lines (1915 loc) · 89.5 KB
/
Theorafile.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// <auto-generated>
// This code was generated by the following tool on 2022-08-03 01:25:32 GMT+00:00:
// https://github.com/bottlenoselabs/c2cs (v3.2.8.0)
//
// Changes to this file may cause incorrect behavior and will be lost if the code is
// regenerated. To extend or add functionality use a partial class in a new file.
// </auto-generated>
// ReSharper disable All
#nullable enable
#pragma warning disable 1591
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
using static bottlenoselabs.Theorafile.Runtime;
namespace bottlenoselabs
{
public static unsafe partial class Theorafile
{
private const string LibraryName = "theorafile";
#region API
// Function @ theorafile.h:104:14
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern int tf_fopen(CString fname, OggTheora_File* file);
// Function @ theorafile.h:99:14
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern int tf_open_callbacks(void* datasource, OggTheora_File* file, tf_callbacks io);
// Function @ theorafile.h:162:14
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern int tf_setvideotrack(OggTheora_File* file, int ttrack);
// Function @ theorafile.h:128:15
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern void tf_reset(OggTheora_File* file);
// Function @ theorafile.h:127:14
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern int tf_eos(OggTheora_File* file);
// Function @ theorafile.h:138:14
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern int tf_readaudio(OggTheora_File* file, float* buffer, int samples);
// Function @ theorafile.h:112:14
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern int tf_hasaudio(OggTheora_File* file);
// Function @ theorafile.h:113:15
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern void tf_videoinfo(OggTheora_File* file, int* width, int* height, double* fps, th_pixel_fmt* fmt);
// Function @ theorafile.h:137:14
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern int tf_readvideo(OggTheora_File* file, CString buffer, int numframes);
// Function @ theorafile.h:111:14
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern int tf_hasvideo(OggTheora_File* file);
// Function @ theorafile.h:120:15
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern void tf_audioinfo(OggTheora_File* file, int* channels, int* samplerate);
// Function @ theorafile.h:108:15
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern void tf_close(OggTheora_File* file);
// Function @ theorafile.h:150:14
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern int tf_setaudiotrack(OggTheora_File* file, int vtrack);
#endregion
#region Types
// FunctionPointer @ NoLocation
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[StructLayout(LayoutKind.Sequential)]
public struct FnPtr_VoidPtr_Int
{
public delegate* unmanaged<void*, int> Pointer;
}
// FunctionPointer @ NoLocation
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[StructLayout(LayoutKind.Sequential)]
public struct FnPtr_VoidPtr_Ogg_int64_t_Int_Int
{
public delegate* unmanaged<void*, ogg_int64_t, int, int> Pointer;
}
// FunctionPointer @ NoLocation
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[StructLayout(LayoutKind.Sequential)]
public struct FnPtr_VoidPtr_Th_ycbcr_buffer_Int_Int_Void
{
public delegate* unmanaged<void*, th_ycbcr_buffer, int, int, void> Pointer;
}
// FunctionPointer @ NoLocation
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[StructLayout(LayoutKind.Sequential)]
public struct FnPtr_VoidPtr_Ulong_Ulong_VoidPtr_Ulong
{
public delegate* unmanaged<void*, ulong, ulong, void*, ulong> Pointer;
}
// Struct @ ogg.h:105:9
// aarch64-apple-darwin (lib/ogg/ogg.h)
// x86_64-pc-windows-msvc (lib\ogg\ogg.h)
// x86_64-apple-darwin (lib/ogg/ogg.h)
// x86_64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-pc-windows-msvc (lib\ogg\ogg.h)
[StructLayout(LayoutKind.Explicit, Size = 32, Pack = 8)]
public struct ogg_sync_state
{
[FieldOffset(0)] // size = 8
public byte* data;
[FieldOffset(8)] // size = 4
public int storage;
[FieldOffset(12)] // size = 4
public int fill;
[FieldOffset(16)] // size = 4
public int returned;
[FieldOffset(20)] // size = 4
public int unsynced;
[FieldOffset(24)] // size = 4
public int headerbytes;
[FieldOffset(28)] // size = 4
public int bodybytes;
}
// Struct @ codec.h:409:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
[StructLayout(LayoutKind.Explicit, Size = 464, Pack = 8)]
public struct th_quant_info
{
[FieldOffset(0)] // size = 128
public fixed byte _dc_scale[128]; // ogg_uint16_t[64]
public Span<ogg_uint16_t> dc_scale
{
get
{
fixed (th_quant_info* @this = &this)
{
var pointer = &@this->_dc_scale[0];
var span = new Span<ogg_uint16_t>(pointer, 64);
return span;
}
}
}
[FieldOffset(128)] // size = 128
public fixed byte _ac_scale[128]; // ogg_uint16_t[64]
public Span<ogg_uint16_t> ac_scale
{
get
{
fixed (th_quant_info* @this = &this)
{
var pointer = &@this->_ac_scale[0];
var span = new Span<ogg_uint16_t>(pointer, 64);
return span;
}
}
}
[FieldOffset(256)] // size = 64
public fixed byte _loop_filter_limits[64]; // unsigned char[64]
public Span<byte> loop_filter_limits
{
get
{
fixed (th_quant_info* @this = &this)
{
var pointer = &@this->_loop_filter_limits[0];
var span = new Span<byte>(pointer, 64);
return span;
}
}
}
[FieldOffset(320)] // size = 144
public fixed byte _qi_ranges[144]; // th_quant_ranges[2]
public Span<th_quant_ranges> qi_ranges
{
get
{
fixed (th_quant_info* @this = &this)
{
var pointer = &@this->_qi_ranges[0];
var span = new Span<th_quant_ranges>(pointer, 2);
return span;
}
}
}
}
// Struct @ theoradec.h:142:9
// aarch64-apple-darwin (lib/theora/theoradec.h)
// x86_64-pc-windows-msvc (lib\theora\theoradec.h)
// x86_64-apple-darwin (lib/theora/theoradec.h)
// x86_64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-pc-windows-msvc (lib\theora\theoradec.h)
[StructLayout(LayoutKind.Explicit, Size = 16, Pack = 8)]
public struct th_stripe_callback
{
[FieldOffset(0)] // size = 8
public void* ctx;
[FieldOffset(8)] // size = 8
public th_stripe_decoded_func stripe_decoded;
}
// Struct @ codec.h:438:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
[StructLayout(LayoutKind.Explicit, Size = 8, Pack = 4)]
public struct th_huff_code
{
[FieldOffset(0)] // size = 4
public ogg_uint32_t pattern;
[FieldOffset(4)] // size = 4
public int nbits;
}
// Struct @ theorafile.h:48:16
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[StructLayout(LayoutKind.Explicit, Size = 24, Pack = 8)]
public struct tf_callbacks
{
[FieldOffset(0)] // size = 8
public FnPtr_VoidPtr_Ulong_Ulong_VoidPtr_Ulong read_func;
[FieldOffset(8)] // size = 8
public FnPtr_VoidPtr_Ogg_int64_t_Int_Int seek_func;
[FieldOffset(16)] // size = 8
public FnPtr_VoidPtr_Int close_func;
}
// Struct @ codec.h:341:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
[StructLayout(LayoutKind.Explicit, Size = 24, Pack = 8)]
public struct th_quant_ranges
{
[FieldOffset(0)] // size = 4
public int nranges;
[FieldOffset(8)] // size = 8
public int* sizes;
[FieldOffset(16)] // size = 8
public th_quant_base* base_matrices;
}
// Struct @ codec.h:142:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
[StructLayout(LayoutKind.Explicit, Size = 24, Pack = 8)]
public struct th_img_plane
{
[FieldOffset(0)] // size = 4
public int width;
[FieldOffset(4)] // size = 4
public int height;
[FieldOffset(8)] // size = 4
public int stride;
[FieldOffset(16)] // size = 8
public byte* data;
}
// Struct @ codec.h:204:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
[StructLayout(LayoutKind.Explicit, Size = 64, Pack = 4)]
public struct th_info
{
[FieldOffset(0)] // size = 1
public byte version_major;
[FieldOffset(1)] // size = 1
public byte version_minor;
[FieldOffset(2)] // size = 1
public byte version_subminor;
[FieldOffset(4)] // size = 4
public ogg_uint32_t frame_width;
[FieldOffset(8)] // size = 4
public ogg_uint32_t frame_height;
[FieldOffset(12)] // size = 4
public ogg_uint32_t pic_width;
[FieldOffset(16)] // size = 4
public ogg_uint32_t pic_height;
[FieldOffset(20)] // size = 4
public ogg_uint32_t pic_x;
[FieldOffset(24)] // size = 4
public ogg_uint32_t pic_y;
[FieldOffset(28)] // size = 4
public ogg_uint32_t fps_numerator;
[FieldOffset(32)] // size = 4
public ogg_uint32_t fps_denominator;
[FieldOffset(36)] // size = 4
public ogg_uint32_t aspect_numerator;
[FieldOffset(40)] // size = 4
public ogg_uint32_t aspect_denominator;
[FieldOffset(44)] // size = 4
public th_colorspace colorspace;
[FieldOffset(48)] // size = 4
public th_pixel_fmt pixel_fmt;
[FieldOffset(52)] // size = 4
public int target_bitrate;
[FieldOffset(56)] // size = 4
public int quality;
[FieldOffset(60)] // size = 4
public int keyframe_granule_shift;
}
// Struct @ ogg.h:27:9
// aarch64-apple-darwin (lib/ogg/ogg.h)
// x86_64-pc-windows-msvc (lib\ogg\ogg.h)
// x86_64-apple-darwin (lib/ogg/ogg.h)
// x86_64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-pc-windows-msvc (lib\ogg\ogg.h)
[StructLayout(LayoutKind.Explicit, Size = 16, Pack = 8)]
public struct ogg_iovec_t
{
[FieldOffset(0)] // size = 8
public void* iov_base;
[FieldOffset(8)] // size = 8
public ulong iov_len;
}
// OpaqueType @ ogg.h:48:3
// aarch64-apple-darwin (lib/ogg/ogg.h)
// x86_64-pc-windows-msvc (lib\ogg\ogg.h)
// x86_64-apple-darwin (lib/ogg/ogg.h)
// x86_64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-pc-windows-msvc (lib\ogg\ogg.h)
[StructLayout(LayoutKind.Sequential)]
public struct ogg_page
{
}
// OpaqueType @ ogg.h:85:3
// aarch64-apple-darwin (lib/ogg/ogg.h)
// x86_64-pc-windows-msvc (lib\ogg\ogg.h)
// x86_64-apple-darwin (lib/ogg/ogg.h)
// x86_64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-pc-windows-msvc (lib\ogg\ogg.h)
[StructLayout(LayoutKind.Sequential)]
public struct ogg_stream_state
{
}
// OpaqueType @ ogg.h:39:3
// aarch64-apple-darwin (lib/ogg/ogg.h)
// x86_64-pc-windows-msvc (lib\ogg\ogg.h)
// x86_64-apple-darwin (lib/ogg/ogg.h)
// x86_64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-pc-windows-msvc (lib\ogg\ogg.h)
[StructLayout(LayoutKind.Sequential)]
public struct oggpack_buffer
{
}
// OpaqueType @ theorafile.h:93:3
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
[StructLayout(LayoutKind.Sequential)]
public struct OggTheora_File
{
}
// OpaqueType @ ogg.h:103:3
// aarch64-apple-darwin (lib/ogg/ogg.h)
// x86_64-pc-windows-msvc (lib\ogg\ogg.h)
// x86_64-apple-darwin (lib/ogg/ogg.h)
// x86_64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-unknown-linux-gnu (lib/ogg/ogg.h)
// aarch64-pc-windows-msvc (lib\ogg\ogg.h)
[StructLayout(LayoutKind.Sequential)]
public struct ogg_packet
{
}
// TypeAlias @ codec.h:168:22
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
[StructLayout(LayoutKind.Explicit, Size = 72, Pack = 8)]
public struct th_ycbcr_buffer
{
[FieldOffset(0)] // size = 72, padding = 0
public th_img_plane* Data;
public static implicit operator th_img_plane*(th_ycbcr_buffer data) => data.Data;
public static implicit operator th_ycbcr_buffer(th_img_plane* data) => new() { Data = data };
}
// TypeAlias @ os_types.h:77:20
// aarch64-apple-darwin (lib/ogg/os_types.h)
// x86_64-pc-windows-msvc (lib\ogg\os_types.h)
// x86_64-apple-darwin (lib/ogg/os_types.h)
// x86_64-unknown-linux-gnu (lib/ogg/os_types.h)
// aarch64-unknown-linux-gnu (lib/ogg/os_types.h)
// aarch64-pc-windows-msvc (lib\ogg\os_types.h)
[StructLayout(LayoutKind.Explicit, Size = 8, Pack = 8)]
public struct ogg_int64_t
{
[FieldOffset(0)] // size = 8, padding = 0
public long Data;
public static implicit operator long(ogg_int64_t data) => data.Data;
public static implicit operator ogg_int64_t(long data) => new() { Data = data };
}
// TypeAlias @ codec.h:338:23
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
[StructLayout(LayoutKind.Explicit, Size = 64, Pack = 8)]
public struct th_quant_base
{
[FieldOffset(0)] // size = 64, padding = 0
public byte* Data;
public static implicit operator byte*(th_quant_base data) => data.Data;
public static implicit operator th_quant_base(byte* data) => new() { Data = data };
}
// TypeAlias @ theoradec.h:138:16
// aarch64-apple-darwin (lib/theora/theoradec.h)
// x86_64-pc-windows-msvc (lib\theora\theoradec.h)
// x86_64-apple-darwin (lib/theora/theoradec.h)
// x86_64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-pc-windows-msvc (lib\theora\theoradec.h)
[StructLayout(LayoutKind.Explicit, Size = 8, Pack = 8)]
public struct th_stripe_decoded_func
{
[FieldOffset(0)] // size = 8, padding = 0
public FnPtr_VoidPtr_Th_ycbcr_buffer_Int_Int_Void Data;
public static implicit operator FnPtr_VoidPtr_Th_ycbcr_buffer_Int_Int_Void(th_stripe_decoded_func data) => data.Data;
public static implicit operator th_stripe_decoded_func(FnPtr_VoidPtr_Th_ycbcr_buffer_Int_Int_Void data) => new() { Data = data };
}
// TypeAlias @ os_types.h:76:21
// aarch64-apple-darwin (lib/ogg/os_types.h)
// x86_64-pc-windows-msvc (lib\ogg\os_types.h)
// x86_64-apple-darwin (lib/ogg/os_types.h)
// x86_64-unknown-linux-gnu (lib/ogg/os_types.h)
// aarch64-unknown-linux-gnu (lib/ogg/os_types.h)
// aarch64-pc-windows-msvc (lib\ogg\os_types.h)
[StructLayout(LayoutKind.Explicit, Size = 4, Pack = 4)]
public struct ogg_uint32_t
{
[FieldOffset(0)] // size = 4, padding = 0
public uint Data;
public static implicit operator uint(ogg_uint32_t data) => data.Data;
public static implicit operator ogg_uint32_t(uint data) => new() { Data = data };
}
// TypeAlias @ os_types.h:74:21
// aarch64-apple-darwin (lib/ogg/os_types.h)
// x86_64-pc-windows-msvc (lib\ogg\os_types.h)
// x86_64-apple-darwin (lib/ogg/os_types.h)
// x86_64-unknown-linux-gnu (lib/ogg/os_types.h)
// aarch64-unknown-linux-gnu (lib/ogg/os_types.h)
// aarch64-pc-windows-msvc (lib\ogg\os_types.h)
[StructLayout(LayoutKind.Explicit, Size = 2, Pack = 2)]
public struct ogg_uint16_t
{
[FieldOffset(0)] // size = 2, padding = 0
public ushort Data;
public static implicit operator ushort(ogg_uint16_t data) => data.Data;
public static implicit operator ogg_uint16_t(ushort data) => new() { Data = data };
}
// Enum @ codec.h:98:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public enum th_colorspace : int
{
TH_CS_UNSPECIFIED = 0,
TH_CS_ITU_REC_470M = 1,
TH_CS_ITU_REC_470BG = 2,
TH_CS_NSPACES = 3
}
// Enum @ codec.h:114:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public enum th_pixel_fmt : int
{
TH_PF_420 = 0,
TH_PF_RSVD = 1,
TH_PF_422 = 2,
TH_PF_444 = 3,
TH_PF_NFORMATS = 4
}
// MacroObject @ codec.h:225:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_EREAD = -128;
// MacroObject @ theorafile.h:97:9
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
public const int TF_EUNSUPPORTED = -2;
// MacroObject @ theoradec.h:98:9
// aarch64-apple-darwin (lib/theora/theoradec.h)
// x86_64-pc-windows-msvc (lib\theora\theoradec.h)
// x86_64-apple-darwin (lib/theora/theoradec.h)
// x86_64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-pc-windows-msvc (lib\theora\theoradec.h)
public const int TH_DECCTL_SET_TELEMETRY_MV = 11;
// MacroObject @ codec.h:229:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_ENOTVORBIS = -132;
// MacroObject @ theoradec.h:79:9
// aarch64-apple-darwin (lib/theora/theoradec.h)
// x86_64-pc-windows-msvc (lib\theora\theoradec.h)
// x86_64-apple-darwin (lib/theora/theoradec.h)
// x86_64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-pc-windows-msvc (lib\theora\theoradec.h)
public const int TH_DECCTL_SET_GRANPOS = 5;
// MacroObject @ codec.h:222:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_EOF = -2;
// MacroObject @ codec.h:230:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_EBADHEADER = -133;
// MacroObject @ codec.h:83:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public const int TH_EVERSION = -22;
// MacroObject @ theoradec.h:96:9
// aarch64-apple-darwin (lib/theora/theoradec.h)
// x86_64-pc-windows-msvc (lib\theora\theoradec.h)
// x86_64-apple-darwin (lib/theora/theoradec.h)
// x86_64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-pc-windows-msvc (lib\theora\theoradec.h)
public const int TH_DECCTL_SET_TELEMETRY_MBMODE = 9;
// MacroObject @ codec.h:233:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_EBADPACKET = -136;
// MacroObject @ codec.h:232:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_ENOTAUDIO = -135;
// MacroObject @ codec.h:79:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public const int TH_EBADHEADER = -20;
// MacroObject @ theorafile.h:96:9
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
public const int TF_EUNKNOWN = -1;
// MacroObject @ theorafile.h:98:9
// aarch64-apple-darwin
// x86_64-pc-windows-msvc
// x86_64-apple-darwin
// x86_64-unknown-linux-gnu
// aarch64-unknown-linux-gnu
// aarch64-pc-windows-msvc
public const int TF_ENODATASOURCE = -3;
// MacroObject @ theoradec.h:100:9
// aarch64-apple-darwin (lib/theora/theoradec.h)
// x86_64-pc-windows-msvc (lib\theora\theoradec.h)
// x86_64-apple-darwin (lib/theora/theoradec.h)
// x86_64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-pc-windows-msvc (lib\theora\theoradec.h)
public const int TH_DECCTL_SET_TELEMETRY_QI = 13;
// MacroObject @ codec.h:221:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_FALSE = -1;
// MacroObject @ codec.h:77:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public const int TH_EINVAL = -10;
// MacroObject @ theoradec.h:93:9
// aarch64-apple-darwin (lib/theora/theoradec.h)
// x86_64-pc-windows-msvc (lib\theora\theoradec.h)
// x86_64-apple-darwin (lib/theora/theoradec.h)
// x86_64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-pc-windows-msvc (lib\theora\theoradec.h)
public const int TH_DECCTL_SET_STRIPE_CB = 7;
// MacroObject @ theoradec.h:102:9
// aarch64-apple-darwin (lib/theora/theoradec.h)
// x86_64-pc-windows-msvc (lib\theora\theoradec.h)
// x86_64-apple-darwin (lib/theora/theoradec.h)
// x86_64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-pc-windows-msvc (lib\theora\theoradec.h)
public const int TH_DECCTL_SET_TELEMETRY_BITS = 15;
// MacroObject @ theoradec.h:67:9
// aarch64-apple-darwin (lib/theora/theoradec.h)
// x86_64-pc-windows-msvc (lib\theora\theoradec.h)
// x86_64-apple-darwin (lib/theora/theoradec.h)
// x86_64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-unknown-linux-gnu (lib/theora/theoradec.h)
// aarch64-pc-windows-msvc (lib\theora\theoradec.h)
public const int TH_DECCTL_SET_PPLEVEL = 3;
// MacroObject @ codec.h:81:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public const int TH_ENOTFORMAT = -21;
// MacroObject @ codec.h:235:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_ENOSEEK = -138;
// MacroObject @ codec.h:423:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public const int TH_NHUFFMAN_TABLES = 80;
// MacroObject @ codec.h:231:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_EVERSION = -134;
// MacroObject @ codec.h:425:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public const int TH_NDCT_TOKENS = 32;
// MacroObject @ codec.h:227:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_EIMPL = -130;
// MacroObject @ codec.h:87:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public const int TH_EBADPACKET = -24;
// MacroObject @ codec.h:85:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public const int TH_EIMPL = -23;
// MacroObject @ codec.h:223:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_HOLE = -3;
// MacroObject @ codec.h:91:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public const int TH_DUPFRAME = 1;
// MacroObject @ codec.h:226:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_EFAULT = -129;
// MacroObject @ codec.h:234:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_EBADLINK = -137;
// MacroObject @ codec.h:228:9
// aarch64-apple-darwin (lib/vorbis/codec.h)
// x86_64-pc-windows-msvc (lib\vorbis\codec.h)
// x86_64-apple-darwin (lib/vorbis/codec.h)
// x86_64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-unknown-linux-gnu (lib/vorbis/codec.h)
// aarch64-pc-windows-msvc (lib\vorbis\codec.h)
public const int OV_EINVAL = -131;
// MacroObject @ codec.h:75:9
// aarch64-apple-darwin (lib/theora/codec.h)
// x86_64-pc-windows-msvc (lib\theora\codec.h)
// x86_64-apple-darwin (lib/theora/codec.h)
// x86_64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-unknown-linux-gnu (lib/theora/codec.h)
// aarch64-pc-windows-msvc (lib\theora\codec.h)
public const int TH_EFAULT = -1;
// MacroObject @ theoradec.h:50:9
// aarch64-apple-darwin (lib/theora/theoradec.h)
// x86_64-pc-windows-msvc (lib\theora\theoradec.h)