If set to True, will automatically downscale based on video frame size. Overrides `downscale` if set.
(self)
| 297 | |
| 298 | @property |
| 299 | def auto_downscale(self) -> bool: |
| 300 | """If set to True, will automatically downscale based on video frame size. |
| 301 | |
| 302 | Overrides `downscale` if set.""" |
| 303 | return self._auto_downscale |
| 304 | |
| 305 | @auto_downscale.setter |
| 306 | def auto_downscale(self, value: bool): |
nothing calls this directly
no outgoing calls
no test coverage detected