Tab support

This commit is contained in:
Ali
2020-02-19 00:10:28 +04:00
parent 2505082eee
commit 507e17f40f
34 changed files with 1759 additions and 201 deletions

View File

@@ -123,7 +123,7 @@ private final class UniversalSoftwareVideoSourceImpl {
let ioBufferSize = 1 * 1024
guard let avIoContext = FFMpegAVIOContext(bufferSize: Int32(ioBufferSize), opaqueContext: Unmanaged.passUnretained(self).toOpaque(), readPacket: readPacketCallback, seek: seekCallback) else {
guard let avIoContext = FFMpegAVIOContext(bufferSize: Int32(ioBufferSize), opaqueContext: Unmanaged.passUnretained(self).toOpaque(), readPacket: readPacketCallback, writePacket: nil, seek: seekCallback) else {
return nil
}
self.avIoContext = avIoContext