mirror of
https://github.com/HaishinKit/HaishinKit.swift.git
synced 2026-06-06 20:17:36 +00:00
15 lines
265 B
Swift
15 lines
265 B
Swift
import Foundation
|
|
|
|
protocol MP4ReaderConvertible: AnyObject {
|
|
var fileType: MP4FileTypeBox { get }
|
|
var tracks: [MP4TrackReader] { get }
|
|
|
|
func execute() -> Self
|
|
}
|
|
|
|
extension MP4ReaderConvertible {
|
|
func execute() -> Self {
|
|
return self
|
|
}
|
|
}
|