mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
55 lines
2.5 KiB
C++
55 lines
2.5 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_MULTIMEDIA_GEN_QVIDEOENCODERSETTINGSCONTROL_H
|
|
#define MIQT_QT_MULTIMEDIA_GEN_QVIDEOENCODERSETTINGSCONTROL_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "../../libmiqt/libmiqt.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QMediaControl;
|
|
class QMetaObject;
|
|
class QObject;
|
|
class QSize;
|
|
class QVideoEncoderSettings;
|
|
class QVideoEncoderSettingsControl;
|
|
#else
|
|
typedef struct QMediaControl QMediaControl;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QObject QObject;
|
|
typedef struct QSize QSize;
|
|
typedef struct QVideoEncoderSettings QVideoEncoderSettings;
|
|
typedef struct QVideoEncoderSettingsControl QVideoEncoderSettingsControl;
|
|
#endif
|
|
|
|
void QVideoEncoderSettingsControl_virtbase(QVideoEncoderSettingsControl* src, QMediaControl** outptr_QMediaControl);
|
|
QMetaObject* QVideoEncoderSettingsControl_MetaObject(const QVideoEncoderSettingsControl* self);
|
|
void* QVideoEncoderSettingsControl_Metacast(QVideoEncoderSettingsControl* self, const char* param1);
|
|
struct miqt_string QVideoEncoderSettingsControl_Tr(const char* s);
|
|
struct miqt_string QVideoEncoderSettingsControl_TrUtf8(const char* s);
|
|
struct miqt_array /* of QSize* */ QVideoEncoderSettingsControl_SupportedResolutions(const QVideoEncoderSettingsControl* self, QVideoEncoderSettings* settings, bool* continuous);
|
|
struct miqt_array /* of double */ QVideoEncoderSettingsControl_SupportedFrameRates(const QVideoEncoderSettingsControl* self, QVideoEncoderSettings* settings, bool* continuous);
|
|
struct miqt_array /* of struct miqt_string */ QVideoEncoderSettingsControl_SupportedVideoCodecs(const QVideoEncoderSettingsControl* self);
|
|
struct miqt_string QVideoEncoderSettingsControl_VideoCodecDescription(const QVideoEncoderSettingsControl* self, struct miqt_string codec);
|
|
QVideoEncoderSettings* QVideoEncoderSettingsControl_VideoSettings(const QVideoEncoderSettingsControl* self);
|
|
void QVideoEncoderSettingsControl_SetVideoSettings(QVideoEncoderSettingsControl* self, QVideoEncoderSettings* settings);
|
|
struct miqt_string QVideoEncoderSettingsControl_Tr2(const char* s, const char* c);
|
|
struct miqt_string QVideoEncoderSettingsControl_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string QVideoEncoderSettingsControl_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string QVideoEncoderSettingsControl_TrUtf83(const char* s, const char* c, int n);
|
|
void QVideoEncoderSettingsControl_Delete(QVideoEncoderSettingsControl* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|