提交 f021e919 编写于 作者: C Cao Chuan

Fix code scan cyclomatic complexity

Signed-off-by: NCao Chuan <caochuan@huawei.com>
上级 b58a2b3a
...@@ -37,21 +37,20 @@ namespace Media { ...@@ -37,21 +37,20 @@ namespace Media {
uint32_t ImageReceiverNDKTest::sOnEvnentCount = 0; uint32_t ImageReceiverNDKTest::sOnEvnentCount = 0;
napi_value ImageReceiverNDKTest::Init(napi_env env, napi_value exports) napi_value ImageReceiverNDKTest::Init(napi_env env, napi_value exports)
{ {
napi_property_descriptor props[] = { napi_property_descriptor props[] = {
STATIC_FUNCTION("createImageReceiver",JsCreateImageReceiver), STATIC_FUNCTION("createImageReceiver", JsCreateImageReceiver),
STATIC_FUNCTION("getReceivingSurfaceId",JsGetReceivingSurfaceId), STATIC_FUNCTION("getReceivingSurfaceId", JsGetReceivingSurfaceId),
STATIC_FUNCTION("readLatestImage",JsReadLatestImage), STATIC_FUNCTION("readLatestImage", JsReadLatestImage),
STATIC_FUNCTION("readNextImage",JsReadNextImage), STATIC_FUNCTION("readNextImage", JsReadNextImage),
STATIC_FUNCTION("on",JsOn), STATIC_FUNCTION("on", JsOn),
STATIC_FUNCTION("getSize",JsGetSize), STATIC_FUNCTION("getSize", JsGetSize),
STATIC_FUNCTION("getCapacity",JsGetCapacity), STATIC_FUNCTION("getCapacity", JsGetCapacity),
STATIC_FUNCTION("getFormat",JsGetFormat), STATIC_FUNCTION("getFormat", JsGetFormat),
STATIC_FUNCTION("getOnEventCount",JsGetOnEventCount), STATIC_FUNCTION("getOnEventCount", JsGetOnEventCount),
STATIC_FUNCTION("imageClipRect",JsImageClipRect), STATIC_FUNCTION("imageClipRect", JsImageClipRect),
STATIC_FUNCTION("imageSize",JsImageSize), STATIC_FUNCTION("imageSize", JsImageSize),
STATIC_FUNCTION("imageFormat",JsImageFormat), STATIC_FUNCTION("imageFormat", JsImageFormat),
STATIC_FUNCTION("imageGetComponent",JsImageGetComponent), STATIC_FUNCTION("imageGetComponent", JsImageGetComponent),
}; };
napi_define_properties(env, exports, sizeof(props) / sizeof(props[0]), props); napi_define_properties(env, exports, sizeof(props) / sizeof(props[0]), props);
return exports; return exports;
...@@ -219,7 +218,6 @@ napi_value ImageReceiverNDKTest::JsGetSize(napi_env env, napi_callback_info info ...@@ -219,7 +218,6 @@ napi_value ImageReceiverNDKTest::JsGetSize(napi_env env, napi_callback_info info
setInt32NamedProperty(env, result, "width", size.width); setInt32NamedProperty(env, result, "width", size.width);
setInt32NamedProperty(env, result, "height", size.height); setInt32NamedProperty(env, result, "height", size.height);
return result; return result;
} }
napi_value ImageReceiverNDKTest::JsGetCapacity(napi_env env, napi_callback_info info) napi_value ImageReceiverNDKTest::JsGetCapacity(napi_env env, napi_callback_info info)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册