avoid name-conflict

when compiled with -rdynamic, "AudioStream" symbol
conflicts with AspectVST.so
This commit is contained in:
Robin Gareus 2013-06-14 13:49:07 +02:00
parent 80a13145f3
commit 748de7e794
2 changed files with 3 additions and 3 deletions

View file

@ -211,7 +211,7 @@ TranscodeFfmpeg::probe ()
}
} else if (i->at(5) == X_("codec_type=audio")) { /* new ffprobe */
AudioStream as;
FFAudioStream as;
for (std::vector<std::string>::iterator kv = i->begin(); kv != i->end(); ++kv) {
const size_t kvsep = kv->find('=');
if(kvsep == std::string::npos) continue;