mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
avoid name-conflict
when compiled with -rdynamic, "AudioStream" symbol conflicts with AspectVST.so
This commit is contained in:
parent
80a13145f3
commit
748de7e794
2 changed files with 3 additions and 3 deletions
|
|
@ -211,7 +211,7 @@ TranscodeFfmpeg::probe ()
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (i->at(5) == X_("codec_type=audio")) { /* new ffprobe */
|
} 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) {
|
for (std::vector<std::string>::iterator kv = i->begin(); kv != i->end(); ++kv) {
|
||||||
const size_t kvsep = kv->find('=');
|
const size_t kvsep = kv->find('=');
|
||||||
if(kvsep == std::string::npos) continue;
|
if(kvsep == std::string::npos) continue;
|
||||||
|
|
|
||||||
|
|
@ -25,12 +25,12 @@
|
||||||
#include "system_exec.h"
|
#include "system_exec.h"
|
||||||
|
|
||||||
/* TODO: use a namespace here ? */
|
/* TODO: use a namespace here ? */
|
||||||
struct AudioStream {
|
struct FFAudioStream {
|
||||||
std::string name;
|
std::string name;
|
||||||
std::string stream_id;
|
std::string stream_id;
|
||||||
uint32_t channels;
|
uint32_t channels;
|
||||||
};
|
};
|
||||||
typedef std::vector<AudioStream> AudioStreams;
|
typedef std::vector<FFAudioStream> AudioStreams;
|
||||||
typedef std::map<std::string,std::string> FFSettings;
|
typedef std::map<std::string,std::string> FFSettings;
|
||||||
|
|
||||||
/** @class TranscodeFfmpeg
|
/** @class TranscodeFfmpeg
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue