MCPcopy Create free account
hub / github.com/audeering/opensmile / getElementName

Method getElementName

src/core/dataMemoryLevel.cpp:1158–1169  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1156}
1157
1158char * cDataMemoryLevel::getElementName(int n) const
1159{
1160 if ( (n>=0)&&(n<lcfg.N) ) { // TODO:: is N correct? number of elements??
1161 int llN=0;
1162 const char *tmp = fmeta.getName(n,&llN);
1163 char *ret;
1164 if (llN >= 0) ret = myvprint("%s[%i]",tmp,llN);
1165 else ret = strdup(tmp); //myvprint("%s",tmp,__N);
1166 return ret;
1167 }
1168 else return NULL;
1169}
1170
1171void cDataMemoryLevel::setFrameSizeSec(double fss)
1172{

Callers

nothing calls this directly

Calls 2

myvprintFunction · 0.70
getNameMethod · 0.45

Tested by

no test coverage detected