Commit e153f063 authored by Daniil Osokin's avatar Daniil Osokin

Added missing enums for cvtColor RGB to YUV420p

parent ecf770d4
...@@ -1050,7 +1050,21 @@ enum ...@@ -1050,7 +1050,21 @@ enum
COLOR_RGBA2mRGBA = 125, COLOR_RGBA2mRGBA = 125,
COLOR_mRGBA2RGBA = 126, COLOR_mRGBA2RGBA = 126,
COLOR_COLORCVT_MAX = 127 COLOR_RGB2YUV_I420 = 127,
COLOR_BGR2YUV_I420 = 128,
COLOR_RGB2YUV_IYUV = COLOR_RGB2YUV_I420,
COLOR_BGR2YUV_IYUV = COLOR_BGR2YUV_I420,
COLOR_RGBA2YUV_I420 = 129,
COLOR_BGRA2YUV_I420 = 130,
COLOR_RGBA2YUV_IYUV = COLOR_RGBA2YUV_I420,
COLOR_BGRA2YUV_IYUV = COLOR_BGRA2YUV_I420,
COLOR_RGB2YUV_YV12 = 131,
COLOR_BGR2YUV_YV12 = 132,
COLOR_RGBA2YUV_YV12 = 133,
COLOR_BGRA2YUV_YV12 = 134,
COLOR_COLORCVT_MAX = 135
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment