How can I get access to pixel data (for reading) when being presented a frame? I have the following:
class VideoSurface: public QAbstractVideoSurface {
bool present(const QVideoFrame &frame) override {
// I can't map() because frame is const and map() is not marked const
// and frame is not already mapped, so what can I do with it?
}
};
_______________________________________________
Interest mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/interest
