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:
committed by
Martin Storsjö
parent
7768a635c4
commit
3048fae63c
@@ -39,9 +39,7 @@
|
||||
av_register_input_format(&ff_##x##_demuxer); \
|
||||
}
|
||||
|
||||
#define REGISTER_MUXDEMUX(X, x) \
|
||||
REGISTER_MUXER(X, x); \
|
||||
REGISTER_DEMUXER(X,x)
|
||||
#define REGISTER_MUXDEMUX(X, x) REGISTER_MUXER(X, x); REGISTER_DEMUXER(X, x)
|
||||
|
||||
#define REGISTER_PROTOCOL(X, x) \
|
||||
{ \
|
||||
|
||||
Reference in New Issue
Block a user