mirror of
https://github.com/KrisKennaway/ii-vision.git
synced 2024-12-21 05:30:20 +00:00
9 lines
113 B
Python
9 lines
113 B
Python
|
"""Enum representing video encoding mode."""
|
||
|
|
||
|
import enum
|
||
|
|
||
|
|
||
|
class VideoMode(enum.Enum):
|
||
|
HGR = 0
|
||
|
DHGR = 1
|