miqt/qt/multimedia/gen_qvideoframe.cpp

212 lines
6.0 KiB
C++
Raw Normal View History

2024-11-04 10:15:32 +00:00
#include <QImage>
#include <QMap>
#include <QSize>
#include <QString>
#include <QByteArray>
#include <cstring>
#include <QVariant>
#include <QVideoFrame>
#include <qvideoframe.h>
#include "gen_qvideoframe.h"
#include "_cgo_export.h"
QVideoFrame* QVideoFrame_new() {
return new QVideoFrame();
}
QVideoFrame* QVideoFrame_new2(int bytes, QSize* size, int bytesPerLine, int format) {
return new QVideoFrame(static_cast<int>(bytes), *size, static_cast<int>(bytesPerLine), static_cast<QVideoFrame::PixelFormat>(format));
}
QVideoFrame* QVideoFrame_new3(QImage* image) {
return new QVideoFrame(*image);
}
QVideoFrame* QVideoFrame_new4(QVideoFrame* other) {
return new QVideoFrame(*other);
}
void QVideoFrame_OperatorAssign(QVideoFrame* self, QVideoFrame* other) {
self->operator=(*other);
}
bool QVideoFrame_OperatorEqual(const QVideoFrame* self, QVideoFrame* other) {
return self->operator==(*other);
}
bool QVideoFrame_OperatorNotEqual(const QVideoFrame* self, QVideoFrame* other) {
return self->operator!=(*other);
}
bool QVideoFrame_IsValid(const QVideoFrame* self) {
return self->isValid();
}
int QVideoFrame_PixelFormat(const QVideoFrame* self) {
QVideoFrame::PixelFormat _ret = self->pixelFormat();
return static_cast<int>(_ret);
}
int QVideoFrame_HandleType(const QVideoFrame* self) {
QAbstractVideoBuffer::HandleType _ret = self->handleType();
return static_cast<int>(_ret);
}
QSize* QVideoFrame_Size(const QVideoFrame* self) {
return new QSize(self->size());
}
int QVideoFrame_Width(const QVideoFrame* self) {
return self->width();
}
int QVideoFrame_Height(const QVideoFrame* self) {
return self->height();
}
int QVideoFrame_FieldType(const QVideoFrame* self) {
QVideoFrame::FieldType _ret = self->fieldType();
return static_cast<int>(_ret);
}
void QVideoFrame_SetFieldType(QVideoFrame* self, int fieldType) {
self->setFieldType(static_cast<QVideoFrame::FieldType>(fieldType));
}
bool QVideoFrame_IsMapped(const QVideoFrame* self) {
return self->isMapped();
}
bool QVideoFrame_IsReadable(const QVideoFrame* self) {
return self->isReadable();
}
bool QVideoFrame_IsWritable(const QVideoFrame* self) {
return self->isWritable();
}
int QVideoFrame_MapMode(const QVideoFrame* self) {
QAbstractVideoBuffer::MapMode _ret = self->mapMode();
return static_cast<int>(_ret);
}
bool QVideoFrame_Map(QVideoFrame* self, int mode) {
return self->map(static_cast<QAbstractVideoBuffer::MapMode>(mode));
}
void QVideoFrame_Unmap(QVideoFrame* self) {
self->unmap();
}
int QVideoFrame_BytesPerLine(const QVideoFrame* self) {
return self->bytesPerLine();
}
int QVideoFrame_BytesPerLineWithPlane(const QVideoFrame* self, int plane) {
return self->bytesPerLine(static_cast<int>(plane));
}
unsigned char* QVideoFrame_Bits(QVideoFrame* self) {
uchar* _ret = self->bits();
return static_cast<unsigned char*>(_ret);
}
unsigned char* QVideoFrame_BitsWithPlane(QVideoFrame* self, int plane) {
uchar* _ret = self->bits(static_cast<int>(plane));
return static_cast<unsigned char*>(_ret);
}
const unsigned char* QVideoFrame_Bits2(const QVideoFrame* self) {
const uchar* _ret = self->bits();
return static_cast<const unsigned char*>(_ret);
}
const unsigned char* QVideoFrame_Bits3(const QVideoFrame* self, int plane) {
const uchar* _ret = self->bits(static_cast<int>(plane));
return static_cast<const unsigned char*>(_ret);
}
int QVideoFrame_MappedBytes(const QVideoFrame* self) {
return self->mappedBytes();
}
int QVideoFrame_PlaneCount(const QVideoFrame* self) {
return self->planeCount();
}
QVariant* QVideoFrame_Handle(const QVideoFrame* self) {
return new QVariant(self->handle());
}
long long QVideoFrame_StartTime(const QVideoFrame* self) {
qint64 _ret = self->startTime();
return static_cast<long long>(_ret);
}
void QVideoFrame_SetStartTime(QVideoFrame* self, long long time) {
self->setStartTime(static_cast<qint64>(time));
}
long long QVideoFrame_EndTime(const QVideoFrame* self) {
qint64 _ret = self->endTime();
return static_cast<long long>(_ret);
}
void QVideoFrame_SetEndTime(QVideoFrame* self, long long time) {
self->setEndTime(static_cast<qint64>(time));
}
struct miqt_map QVideoFrame_AvailableMetaData(const QVideoFrame* self) {
QVariantMap _ret = self->availableMetaData();
// Convert QMap<> from C++ memory to manually-managed C memory
struct miqt_string* _karr = static_cast<struct miqt_string*>(malloc(sizeof(struct miqt_string) * _ret.size()));
QVariant** _varr = static_cast<QVariant**>(malloc(sizeof(QVariant*) * _ret.size()));
int _ctr = 0;
for (auto _itr = _ret.keyValueBegin(); _itr != _ret.keyValueEnd(); ++_itr) {
QString _mapkey_ret = _itr->first;
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _mapkey_b = _mapkey_ret.toUtf8();
struct miqt_string _mapkey_ms;
_mapkey_ms.len = _mapkey_b.length();
_mapkey_ms.data = static_cast<char*>(malloc(_mapkey_ms.len));
memcpy(_mapkey_ms.data, _mapkey_b.data(), _mapkey_ms.len);
_karr[_ctr] = _mapkey_ms;
_varr[_ctr] = new QVariant(_itr->second);
_ctr++;
}
struct miqt_map _out;
_out.len = _ret.size();
_out.keys = static_cast<void*>(_karr);
_out.values = static_cast<void*>(_varr);
return _out;
}
QVariant* QVideoFrame_MetaData(const QVideoFrame* self, struct miqt_string key) {
QString key_QString = QString::fromUtf8(key.data, key.len);
return new QVariant(self->metaData(key_QString));
}
void QVideoFrame_SetMetaData(QVideoFrame* self, struct miqt_string key, QVariant* value) {
QString key_QString = QString::fromUtf8(key.data, key.len);
self->setMetaData(key_QString, *value);
}
QImage* QVideoFrame_Image(const QVideoFrame* self) {
return new QImage(self->image());
}
int QVideoFrame_PixelFormatFromImageFormat(int format) {
QVideoFrame::PixelFormat _ret = QVideoFrame::pixelFormatFromImageFormat(static_cast<QImage::Format>(format));
return static_cast<int>(_ret);
}
int QVideoFrame_ImageFormatFromPixelFormat(int format) {
QImage::Format _ret = QVideoFrame::imageFormatFromPixelFormat(static_cast<QVideoFrame::PixelFormat>(format));
return static_cast<int>(_ret);
}
void QVideoFrame_Delete(QVideoFrame* self) {
delete self;
}