Shared media improvements

This commit is contained in:
Ali
2021-10-22 22:50:50 +04:00
parent b5d1b377f2
commit 73181eabd5
16 changed files with 797 additions and 243 deletions

View File

@@ -11,6 +11,14 @@ private final class MediaPlayerNodeLayerNullAction: NSObject, CAAction {
}
private final class MediaPlayerNodeLayer: AVSampleBufferDisplayLayer {
override init() {
super.init()
}
required init?(coder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override func action(forKey event: String) -> CAAction? {
return MediaPlayerNodeLayerNullAction()
}