Set the QWidget pointer to display the video on (as a LONG pointer id)
| 218 | |
| 219 | // Set the QWidget pointer to display the video on (as a LONG pointer id) |
| 220 | void QtPlayer::SetQWidget(int64_t qwidget_address) { |
| 221 | // Update override QWidget address on the video renderer |
| 222 | p->renderer->OverrideWidget(qwidget_address); |
| 223 | } |
| 224 | |
| 225 | // Get the Renderer pointer address (for Python to cast back into a QObject) |
| 226 | int64_t QtPlayer::GetRendererQObject() { |
nothing calls this directly
no test coverage detected