multimedia: rebuild

This commit is contained in:
mappu 2024-11-11 19:05:14 +13:00
parent a6d314559f
commit 3c8c85a43e
3 changed files with 0 additions and 9 deletions

View File

@ -79,10 +79,6 @@ long long QWaveDecoder_Pos(const QWaveDecoder* self) {
return static_cast<long long>(_ret);
}
void QWaveDecoder_SetIODevice(QWaveDecoder* self, QIODevice* device) {
self->setIODevice(device);
}
long long QWaveDecoder_Size(const QWaveDecoder* self) {
qint64 _ret = self->size();
return static_cast<long long>(_ret);

View File

@ -123,10 +123,6 @@ func (this *QWaveDecoder) Pos() int64 {
return (int64)(C.QWaveDecoder_Pos(this.h))
}
func (this *QWaveDecoder) SetIODevice(device *qt6.QIODevice) {
C.QWaveDecoder_SetIODevice(this.h, (*C.QIODevice)(device.UnsafePointer()))
}
func (this *QWaveDecoder) Size() int64 {
return (int64)(C.QWaveDecoder_Size(this.h))
}

View File

@ -42,7 +42,6 @@ bool QWaveDecoder_Open(QWaveDecoder* self, int mode);
void QWaveDecoder_Close(QWaveDecoder* self);
bool QWaveDecoder_Seek(QWaveDecoder* self, long long pos);
long long QWaveDecoder_Pos(const QWaveDecoder* self);
void QWaveDecoder_SetIODevice(QWaveDecoder* self, QIODevice* device);
long long QWaveDecoder_Size(const QWaveDecoder* self);
bool QWaveDecoder_IsSequential(const QWaveDecoder* self);
long long QWaveDecoder_BytesAvailable(const QWaveDecoder* self);