在 macOS Cocoa 应用程序中使用 VLCKit 时,是否可以通过更新框架代码来添加 gotoPreviousFrame() 方法?

When using VLCKit in a macOS Cocoa Application, is it possible, by updating the code of the framework, to add a gotoPreviousFrame() method?

我在混合 Swift / Objective-C 应用程序中使用 VLCKit。 VLCMediaPlayer 有一个方便的方法:

gotoNextFrame()

精确跳转到视频的下一帧。是否可以创建相反的 gotoPreviousFrame() 方法,将其添加到我的应用程序的 VLC 框架中?我已经成功编译了 VLCKit 并做了一些调查。 gotoNextFrame() 方法直接调用了libvlc 中的函数,然后我在寻找解决方案时迷失在libvlc 的源代码中。非常感谢您的帮助。

由于 libvlc 的内部架构,目前无法使用转到上一帧的功能。