We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 056382f commit 5af4c34Copy full SHA for 5af4c34
ADApp/ntndArrayConverterSrc/ntndArrayConverterPvxs.cpp
@@ -72,7 +72,8 @@ NTNDArrayInfo_t NTNDArrayConverterPvxs::getInfo (void)
72
info.nElements *= info.dims[i];
73
}
74
75
- info.codec = m_value["codec.name"].as<std::string>();
+ // does not update info.codec if codec.name not found in Value
76
+ m_value["codec.name"].as<std::string>(info.codec);
77
78
NDDataType_t dt;
79
int bpe;
0 commit comments