Commit 0f43345f authored by Andrey Pavlenko's avatar Andrey Pavlenko Committed by OpenCV Buildbot

Merge pull request #2394 from ilya-lavrenov:tapi_memop_fix

parents 0a90d6dd 0406898b
...@@ -4206,7 +4206,7 @@ const char* typeToStr(int type) ...@@ -4206,7 +4206,7 @@ const char* typeToStr(int type)
const char* memopTypeToStr(int type) const char* memopTypeToStr(int type)
{ {
static const char* tab[]= static const char* tab[] =
{ {
"uchar", "uchar2", "uchar3", "uchar4", "uchar", "uchar2", "uchar3", "uchar4",
"uchar", "uchar2", "uchar3", "uchar4", "uchar", "uchar2", "uchar3", "uchar4",
...@@ -4214,7 +4214,7 @@ const char* memopTypeToStr(int type) ...@@ -4214,7 +4214,7 @@ const char* memopTypeToStr(int type)
"ushort", "ushort2", "ushort3", "ushort4", "ushort", "ushort2", "ushort3", "ushort4",
"int", "int2", "int3", "int4", "int", "int2", "int3", "int4",
"int", "int2", "int3", "int4", "int", "int2", "int3", "int4",
"int2", "int4", "?", "int8", "ulong", "ulong2", "ulong3", "ulong4",
"?", "?", "?", "?" "?", "?", "?", "?"
}; };
int cn = CV_MAT_CN(type), depth = CV_MAT_DEPTH(type); int cn = CV_MAT_CN(type), depth = CV_MAT_DEPTH(type);
......
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