123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- #if UNITY_EDITOR || UNITY_STANDALONE
- using System;
- using System.Runtime.InteropServices;
- namespace FFmpeg.AutoGen
- {
- public unsafe partial struct AVDictionary
- {
- }
-
- public unsafe partial struct AVBuffer
- {
- }
-
- public unsafe partial struct AVBufferPool
- {
- }
-
- public unsafe partial struct AVBPrint
- {
- }
-
- public unsafe partial struct AVCodecInternal
- {
- }
-
- public unsafe partial struct AVCodecDefault
- {
- }
-
- public unsafe partial struct MpegEncContext
- {
- }
-
- public unsafe partial struct ReSampleContext
- {
- }
-
- public unsafe partial struct AVResampleContext
- {
- }
-
- public unsafe partial struct AVBPrint
- {
- }
-
- public unsafe partial struct AVDeviceInfoList
- {
- }
-
- public unsafe partial struct AVDeviceCapabilitiesQuery
- {
- }
-
- public unsafe partial struct AVCodecTag
- {
- }
-
- public unsafe partial struct AVStreamInternal
- {
- }
-
- public unsafe partial struct AVFormatInternal
- {
- }
-
- public unsafe partial struct AVDeviceRect
- {
- public int @x;
- public int @y;
- public int @width;
- public int @height;
- }
-
- public unsafe partial struct AVDeviceCapabilitiesQuery
- {
- public AVClass* @av_class;
- public AVFormatContext* @device_context;
- public AVCodecID @codec;
- public AVSampleFormat @sample_format;
- public AVPixelFormat @pixel_format;
- public int @sample_rate;
- public int @channels;
- public long @channel_layout;
- public int @window_width;
- public int @window_height;
- public int @frame_width;
- public int @frame_height;
- public AVRational @fps;
- }
-
- public unsafe partial struct AVDeviceInfo
- {
- public sbyte* @device_name;
- public sbyte* @device_description;
- }
-
- public unsafe partial struct AVDeviceInfoList
- {
- public AVDeviceInfo** @devices;
- public int @nb_devices;
- public int @default_device;
- }
-
- public enum AVAppToDevMessageType : int
- {
- @AV_APP_TO_DEV_NONE = 1313820229,
- @AV_APP_TO_DEV_WINDOW_SIZE = 1195724621,
- @AV_APP_TO_DEV_WINDOW_REPAINT = 1380274241,
- @AV_APP_TO_DEV_PAUSE = 1346458912,
- @AV_APP_TO_DEV_PLAY = 1347174745,
- @AV_APP_TO_DEV_TOGGLE_PAUSE = 1346458964,
- @AV_APP_TO_DEV_SET_VOLUME = 1398165324,
- @AV_APP_TO_DEV_MUTE = 541939028,
- @AV_APP_TO_DEV_UNMUTE = 1431131476,
- @AV_APP_TO_DEV_TOGGLE_MUTE = 1414354260,
- @AV_APP_TO_DEV_GET_VOLUME = 1196838732,
- @AV_APP_TO_DEV_GET_MUTE = 1196250452,
- }
-
- public enum AVDevToAppMessageType : int
- {
- @AV_DEV_TO_APP_NONE = 1313820229,
- @AV_DEV_TO_APP_CREATE_WINDOW_BUFFER = 1111708229,
- @AV_DEV_TO_APP_PREPARE_WINDOW_BUFFER = 1112560197,
- @AV_DEV_TO_APP_DISPLAY_WINDOW_BUFFER = 1111771475,
- @AV_DEV_TO_APP_DESTROY_WINDOW_BUFFER = 1111770451,
- @AV_DEV_TO_APP_BUFFER_OVERFLOW = 1112491596,
- @AV_DEV_TO_APP_BUFFER_UNDERFLOW = 1112884812,
- @AV_DEV_TO_APP_BUFFER_READABLE = 1112687648,
- @AV_DEV_TO_APP_BUFFER_WRITABLE = 1113018912,
- @AV_DEV_TO_APP_MUTE_STATE_CHANGED = 1129141588,
- @AV_DEV_TO_APP_VOLUME_LEVEL_CHANGED = 1129729868,
- }
-
- public unsafe static partial class ffmpeg
- {
- public const int LIBAVDEVICE_VERSION_MAJOR = 57;
- public const int LIBAVDEVICE_VERSION_MINOR = 0;
- public const int LIBAVDEVICE_VERSION_MICRO = 101;
- private const string libavdevice = "avdevice-57";
-
- [DllImport(libavdevice, EntryPoint = "avdevice_version", CallingConvention = CallingConvention.Cdecl)]
- public static extern uint avdevice_version();
-
- [DllImport(libavdevice, EntryPoint = "avdevice_configuration", CallingConvention = CallingConvention.Cdecl)]
- public static extern string avdevice_configuration();
-
- [DllImport(libavdevice, EntryPoint = "avdevice_license", CallingConvention = CallingConvention.Cdecl)]
- public static extern string avdevice_license();
-
- [DllImport(libavdevice, EntryPoint = "avdevice_register_all", CallingConvention = CallingConvention.Cdecl)]
- public static extern void avdevice_register_all();
-
- [DllImport(libavdevice, EntryPoint = "av_input_audio_device_next", CallingConvention = CallingConvention.Cdecl)]
- public static extern AVInputFormat* av_input_audio_device_next(AVInputFormat* @d);
-
- [DllImport(libavdevice, EntryPoint = "av_input_video_device_next", CallingConvention = CallingConvention.Cdecl)]
- public static extern AVInputFormat* av_input_video_device_next(AVInputFormat* @d);
-
- [DllImport(libavdevice, EntryPoint = "av_output_audio_device_next", CallingConvention = CallingConvention.Cdecl)]
- public static extern AVOutputFormat* av_output_audio_device_next(AVOutputFormat* @d);
-
- [DllImport(libavdevice, EntryPoint = "av_output_video_device_next", CallingConvention = CallingConvention.Cdecl)]
- public static extern AVOutputFormat* av_output_video_device_next(AVOutputFormat* @d);
-
- [DllImport(libavdevice, EntryPoint = "avdevice_app_to_dev_control_message", CallingConvention = CallingConvention.Cdecl)]
- public static extern int avdevice_app_to_dev_control_message(AVFormatContext* @s, AVAppToDevMessageType @type, void* @data, ulong @data_size);
-
- [DllImport(libavdevice, EntryPoint = "avdevice_dev_to_app_control_message", CallingConvention = CallingConvention.Cdecl)]
- public static extern int avdevice_dev_to_app_control_message(AVFormatContext* @s, AVDevToAppMessageType @type, void* @data, ulong @data_size);
-
- [DllImport(libavdevice, EntryPoint = "avdevice_capabilities_create", CallingConvention = CallingConvention.Cdecl)]
- public static extern int avdevice_capabilities_create(AVDeviceCapabilitiesQuery** @caps, AVFormatContext* @s, AVDictionary** @device_options);
-
- [DllImport(libavdevice, EntryPoint = "avdevice_capabilities_free", CallingConvention = CallingConvention.Cdecl)]
- public static extern void avdevice_capabilities_free(AVDeviceCapabilitiesQuery** @caps, AVFormatContext* @s);
-
- [DllImport(libavdevice, EntryPoint = "avdevice_list_devices", CallingConvention = CallingConvention.Cdecl)]
- public static extern int avdevice_list_devices(AVFormatContext* @s, AVDeviceInfoList** @device_list);
-
- [DllImport(libavdevice, EntryPoint = "avdevice_free_list_devices", CallingConvention = CallingConvention.Cdecl)]
- public static extern void avdevice_free_list_devices(AVDeviceInfoList** @device_list);
-
- [DllImport(libavdevice, EntryPoint = "avdevice_list_input_sources", CallingConvention = CallingConvention.Cdecl)]
- public static extern int avdevice_list_input_sources(AVInputFormat* @device, [MarshalAs(UnmanagedType.LPStr)] string @device_name, AVDictionary* @device_options, AVDeviceInfoList** @device_list);
-
- [DllImport(libavdevice, EntryPoint = "avdevice_list_output_sinks", CallingConvention = CallingConvention.Cdecl)]
- public static extern int avdevice_list_output_sinks(AVOutputFormat* @device, [MarshalAs(UnmanagedType.LPStr)] string @device_name, AVDictionary* @device_options, AVDeviceInfoList** @device_list);
-
- }
- }
- #endif
|