build: Avoid detecting bogus components named 'x'
The function find_things() in configure is confused by component registration calls as part of multiline macros defining combined component registration. Coalesce those macros into one line to work around the issue. Signed-off-by: Diego Biurrun <diego@biurrun.de> Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
7768a635c4
commit
3048fae63c
3 changed files with 3 additions and 9 deletions
|
|
@ -36,9 +36,7 @@
|
|||
av_register_input_format(&ff_##x##_demuxer); \
|
||||
}
|
||||
|
||||
#define REGISTER_INOUTDEV(X, x) \
|
||||
REGISTER_OUTDEV(X, x); \
|
||||
REGISTER_INDEV(X, x)
|
||||
#define REGISTER_INOUTDEV(X, x) REGISTER_OUTDEV(X, x); REGISTER_INDEV(X, x)
|
||||
|
||||
void avdevice_register_all(void)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue