miqt/qt/multimedia/gen_qvideosurfaceformat.cpp

170 lines
5.3 KiB
C++

#include <QByteArray>
#include <QList>
#include <QRect>
#include <QSize>
#include <QVariant>
#include <QVideoSurfaceFormat>
#include <qvideosurfaceformat.h>
#include "gen_qvideosurfaceformat.h"
#ifndef _Bool
#define _Bool bool
#endif
#include "_cgo_export.h"
QVideoSurfaceFormat* QVideoSurfaceFormat_new() {
return new QVideoSurfaceFormat();
}
QVideoSurfaceFormat* QVideoSurfaceFormat_new2(QSize* size, int pixelFormat) {
return new QVideoSurfaceFormat(*size, static_cast<QVideoFrame::PixelFormat>(pixelFormat));
}
QVideoSurfaceFormat* QVideoSurfaceFormat_new3(QVideoSurfaceFormat* format) {
return new QVideoSurfaceFormat(*format);
}
QVideoSurfaceFormat* QVideoSurfaceFormat_new4(QSize* size, int pixelFormat, int handleType) {
return new QVideoSurfaceFormat(*size, static_cast<QVideoFrame::PixelFormat>(pixelFormat), static_cast<QAbstractVideoBuffer::HandleType>(handleType));
}
void QVideoSurfaceFormat_OperatorAssign(QVideoSurfaceFormat* self, QVideoSurfaceFormat* format) {
self->operator=(*format);
}
bool QVideoSurfaceFormat_OperatorEqual(const QVideoSurfaceFormat* self, QVideoSurfaceFormat* format) {
return (*self == *format);
}
bool QVideoSurfaceFormat_OperatorNotEqual(const QVideoSurfaceFormat* self, QVideoSurfaceFormat* format) {
return (*self != *format);
}
bool QVideoSurfaceFormat_IsValid(const QVideoSurfaceFormat* self) {
return self->isValid();
}
int QVideoSurfaceFormat_PixelFormat(const QVideoSurfaceFormat* self) {
QVideoFrame::PixelFormat _ret = self->pixelFormat();
return static_cast<int>(_ret);
}
int QVideoSurfaceFormat_HandleType(const QVideoSurfaceFormat* self) {
QAbstractVideoBuffer::HandleType _ret = self->handleType();
return static_cast<int>(_ret);
}
QSize* QVideoSurfaceFormat_FrameSize(const QVideoSurfaceFormat* self) {
return new QSize(self->frameSize());
}
void QVideoSurfaceFormat_SetFrameSize(QVideoSurfaceFormat* self, QSize* size) {
self->setFrameSize(*size);
}
void QVideoSurfaceFormat_SetFrameSize2(QVideoSurfaceFormat* self, int width, int height) {
self->setFrameSize(static_cast<int>(width), static_cast<int>(height));
}
int QVideoSurfaceFormat_FrameWidth(const QVideoSurfaceFormat* self) {
return self->frameWidth();
}
int QVideoSurfaceFormat_FrameHeight(const QVideoSurfaceFormat* self) {
return self->frameHeight();
}
QRect* QVideoSurfaceFormat_Viewport(const QVideoSurfaceFormat* self) {
return new QRect(self->viewport());
}
void QVideoSurfaceFormat_SetViewport(QVideoSurfaceFormat* self, QRect* viewport) {
self->setViewport(*viewport);
}
int QVideoSurfaceFormat_ScanLineDirection(const QVideoSurfaceFormat* self) {
QVideoSurfaceFormat::Direction _ret = self->scanLineDirection();
return static_cast<int>(_ret);
}
void QVideoSurfaceFormat_SetScanLineDirection(QVideoSurfaceFormat* self, int direction) {
self->setScanLineDirection(static_cast<QVideoSurfaceFormat::Direction>(direction));
}
double QVideoSurfaceFormat_FrameRate(const QVideoSurfaceFormat* self) {
qreal _ret = self->frameRate();
return static_cast<double>(_ret);
}
void QVideoSurfaceFormat_SetFrameRate(QVideoSurfaceFormat* self, double rate) {
self->setFrameRate(static_cast<qreal>(rate));
}
QSize* QVideoSurfaceFormat_PixelAspectRatio(const QVideoSurfaceFormat* self) {
return new QSize(self->pixelAspectRatio());
}
void QVideoSurfaceFormat_SetPixelAspectRatio(QVideoSurfaceFormat* self, QSize* ratio) {
self->setPixelAspectRatio(*ratio);
}
void QVideoSurfaceFormat_SetPixelAspectRatio2(QVideoSurfaceFormat* self, int width, int height) {
self->setPixelAspectRatio(static_cast<int>(width), static_cast<int>(height));
}
int QVideoSurfaceFormat_YCbCrColorSpace(const QVideoSurfaceFormat* self) {
QVideoSurfaceFormat::YCbCrColorSpace _ret = self->yCbCrColorSpace();
return static_cast<int>(_ret);
}
void QVideoSurfaceFormat_SetYCbCrColorSpace(QVideoSurfaceFormat* self, int colorSpace) {
self->setYCbCrColorSpace(static_cast<QVideoSurfaceFormat::YCbCrColorSpace>(colorSpace));
}
bool QVideoSurfaceFormat_IsMirrored(const QVideoSurfaceFormat* self) {
return self->isMirrored();
}
void QVideoSurfaceFormat_SetMirrored(QVideoSurfaceFormat* self, bool mirrored) {
self->setMirrored(mirrored);
}
QSize* QVideoSurfaceFormat_SizeHint(const QVideoSurfaceFormat* self) {
return new QSize(self->sizeHint());
}
struct miqt_array /* of struct miqt_string */ QVideoSurfaceFormat_PropertyNames(const QVideoSurfaceFormat* self) {
QList<QByteArray> _ret = self->propertyNames();
// Convert QList<> from C++ memory to manually-managed C memory
struct miqt_string* _arr = static_cast<struct miqt_string*>(malloc(sizeof(struct miqt_string) * _ret.length()));
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
QByteArray _lv_qb = _ret[i];
struct miqt_string _lv_ms;
_lv_ms.len = _lv_qb.length();
_lv_ms.data = static_cast<char*>(malloc(_lv_ms.len));
memcpy(_lv_ms.data, _lv_qb.data(), _lv_ms.len);
_arr[i] = _lv_ms;
}
struct miqt_array _out;
_out.len = _ret.length();
_out.data = static_cast<void*>(_arr);
return _out;
}
QVariant* QVideoSurfaceFormat_Property(const QVideoSurfaceFormat* self, const char* name) {
return new QVariant(self->property(name));
}
void QVideoSurfaceFormat_SetProperty(QVideoSurfaceFormat* self, const char* name, QVariant* value) {
self->setProperty(name, *value);
}
void QVideoSurfaceFormat_Delete(QVideoSurfaceFormat* self, bool isSubclass) {
if (isSubclass) {
delete dynamic_cast<QVideoSurfaceFormat*>( self );
} else {
delete self;
}
}