From c402d9a9594e5a2b38f834578b010d5cf9bb771e Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Fri, 5 Sep 2014 00:29:42 -0400 Subject: [PATCH] IMAGE: Add an unknown dither type --- image/codecs/codec.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/image/codecs/codec.h b/image/codecs/codec.h index ad7e43783cd..8845754d525 100644 --- a/image/codecs/codec.h +++ b/image/codecs/codec.h @@ -62,6 +62,9 @@ public: * A type of dithering. */ enum DitherType { + /** Unknown */ + kDitherTypeUnknown, + /** Video for Windows dithering */ kDitherTypeVFW,