#include #include #include #include #include #include #include #include "gen_qvideosurfaceformat.h" #include "_cgo_export.h" void QVideoSurfaceFormat_new(QVideoSurfaceFormat** outptr_QVideoSurfaceFormat) { QVideoSurfaceFormat* ret = new QVideoSurfaceFormat(); *outptr_QVideoSurfaceFormat = ret; } void QVideoSurfaceFormat_new2(QSize* size, int pixelFormat, QVideoSurfaceFormat** outptr_QVideoSurfaceFormat) { QVideoSurfaceFormat* ret = new QVideoSurfaceFormat(*size, static_cast(pixelFormat)); *outptr_QVideoSurfaceFormat = ret; } void QVideoSurfaceFormat_new3(QVideoSurfaceFormat* format, QVideoSurfaceFormat** outptr_QVideoSurfaceFormat) { QVideoSurfaceFormat* ret = new QVideoSurfaceFormat(*format); *outptr_QVideoSurfaceFormat = ret; } void QVideoSurfaceFormat_new4(QSize* size, int pixelFormat, int handleType, QVideoSurfaceFormat** outptr_QVideoSurfaceFormat) { QVideoSurfaceFormat* ret = new QVideoSurfaceFormat(*size, static_cast(pixelFormat), static_cast(handleType)); *outptr_QVideoSurfaceFormat = ret; } void QVideoSurfaceFormat_OperatorAssign(QVideoSurfaceFormat* self, QVideoSurfaceFormat* format) { self->operator=(*format); } bool QVideoSurfaceFormat_OperatorEqual(const QVideoSurfaceFormat* self, QVideoSurfaceFormat* format) { return self->operator==(*format); } bool QVideoSurfaceFormat_OperatorNotEqual(const QVideoSurfaceFormat* self, QVideoSurfaceFormat* format) { return self->operator!=(*format); } bool QVideoSurfaceFormat_IsValid(const QVideoSurfaceFormat* self) { return self->isValid(); } int QVideoSurfaceFormat_PixelFormat(const QVideoSurfaceFormat* self) { QVideoFrame::PixelFormat _ret = self->pixelFormat(); return static_cast(_ret); } int QVideoSurfaceFormat_HandleType(const QVideoSurfaceFormat* self) { QAbstractVideoBuffer::HandleType _ret = self->handleType(); return static_cast(_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(width), static_cast(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(_ret); } void QVideoSurfaceFormat_SetScanLineDirection(QVideoSurfaceFormat* self, int direction) { self->setScanLineDirection(static_cast(direction)); } double QVideoSurfaceFormat_FrameRate(const QVideoSurfaceFormat* self) { qreal _ret = self->frameRate(); return static_cast(_ret); } void QVideoSurfaceFormat_SetFrameRate(QVideoSurfaceFormat* self, double rate) { self->setFrameRate(static_cast(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(width), static_cast(height)); } int QVideoSurfaceFormat_YCbCrColorSpace(const QVideoSurfaceFormat* self) { QVideoSurfaceFormat::YCbCrColorSpace _ret = self->yCbCrColorSpace(); return static_cast(_ret); } void QVideoSurfaceFormat_SetYCbCrColorSpace(QVideoSurfaceFormat* self, int colorSpace) { self->setYCbCrColorSpace(static_cast(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 _ret = self->propertyNames(); // Convert QList<> from C++ memory to manually-managed C memory struct miqt_string* _arr = static_cast(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(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(_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( self ); } else { delete self; } }