summaryrefslogtreecommitdiff
path: root/src/lib/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/types.h')
-rw-r--r--src/lib/types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/types.h b/src/lib/types.h
index f8f23a300..4569cfd9a 100644
--- a/src/lib/types.h
+++ b/src/lib/types.h
@@ -139,10 +139,10 @@ enum ChangeType
};
-enum VideoRange
+enum class VideoRange
{
- VIDEO_RANGE_FULL, ///< full, or "JPEG" (0-255 for 8-bit)
- VIDEO_RANGE_VIDEO ///< video, or "MPEG" (16-235 for 8-bit)
+ FULL, ///< full, or "JPEG" (0-255 for 8-bit)
+ VIDEO ///< video, or "MPEG" (16-235 for 8-bit)
};
extern std::string video_range_to_string (VideoRange r);