miqt/qt6/multimedia/gen_qaudiobuffer.cpp

87 lines
2.3 KiB
C++

#include <QAudioBuffer>
#include <QAudioFormat>
#include <QByteArray>
#include <qaudiobuffer.h>
#include "gen_qaudiobuffer.h"
#include "_cgo_export.h"
QAudioBuffer* QAudioBuffer_new() {
return new QAudioBuffer();
}
QAudioBuffer* QAudioBuffer_new2(QAudioBuffer* other) {
return new QAudioBuffer(*other);
}
QAudioBuffer* QAudioBuffer_new3(struct miqt_string data, QAudioFormat* format) {
QByteArray data_QByteArray(data.data, data.len);
return new QAudioBuffer(data_QByteArray, *format);
}
QAudioBuffer* QAudioBuffer_new4(int numFrames, QAudioFormat* format) {
return new QAudioBuffer(static_cast<int>(numFrames), *format);
}
QAudioBuffer* QAudioBuffer_new5(struct miqt_string data, QAudioFormat* format, long long startTime) {
QByteArray data_QByteArray(data.data, data.len);
return new QAudioBuffer(data_QByteArray, *format, static_cast<qint64>(startTime));
}
QAudioBuffer* QAudioBuffer_new6(int numFrames, QAudioFormat* format, long long startTime) {
return new QAudioBuffer(static_cast<int>(numFrames), *format, static_cast<qint64>(startTime));
}
void QAudioBuffer_OperatorAssign(QAudioBuffer* self, QAudioBuffer* other) {
self->operator=(*other);
}
void QAudioBuffer_Swap(QAudioBuffer* self, QAudioBuffer* other) {
self->swap(*other);
}
bool QAudioBuffer_IsValid(const QAudioBuffer* self) {
return self->isValid();
}
void QAudioBuffer_Detach(QAudioBuffer* self) {
self->detach();
}
QAudioFormat* QAudioBuffer_Format(const QAudioBuffer* self) {
return new QAudioFormat(self->format());
}
ptrdiff_t QAudioBuffer_FrameCount(const QAudioBuffer* self) {
qsizetype _ret = self->frameCount();
return static_cast<ptrdiff_t>(_ret);
}
ptrdiff_t QAudioBuffer_SampleCount(const QAudioBuffer* self) {
qsizetype _ret = self->sampleCount();
return static_cast<ptrdiff_t>(_ret);
}
ptrdiff_t QAudioBuffer_ByteCount(const QAudioBuffer* self) {
qsizetype _ret = self->byteCount();
return static_cast<ptrdiff_t>(_ret);
}
long long QAudioBuffer_Duration(const QAudioBuffer* self) {
qint64 _ret = self->duration();
return static_cast<long long>(_ret);
}
long long QAudioBuffer_StartTime(const QAudioBuffer* self) {
qint64 _ret = self->startTime();
return static_cast<long long>(_ret);
}
void QAudioBuffer_Delete(QAudioBuffer* self, bool isSubclass) {
if (isSubclass) {
delete dynamic_cast<QAudioBuffer*>( self );
} else {
delete self;
}
}