[FFmpeg-cvslog] Merge back some registering macros in all*.c.

Clément Bœsch git at videolan.org
Sun Dec 30 07:18:43 CET 2012


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Sun Dec 30 07:17:33 2012 +0100| [613001d75fee9dfef14fb000cac8c67ac6381e97] | committer: Clément Bœsch

Merge back some registering macros in all*.c.

This breaks the sed in configure:find_things(). Fixes regression from
c73c87b. Fixes Ticket2079.

Found-by: jamal

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=613001d75fee9dfef14fb000cac8c67ac6381e97
---

 libavcodec/allcodecs.c   |    5 ++---
 libavdevice/alldevices.c |    5 ++---
 libavformat/allformats.c |    5 ++---
 3 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c
index 6dbc9b2..15106f3 100644
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -48,9 +48,8 @@
             avcodec_register(&ff_##x##_decoder);                        \
     }
 
-#define REGISTER_ENCDEC(X, x)                                           \
-    REGISTER_ENCODER(X, x);                                             \
-    REGISTER_DECODER(X,x)
+/* Warning: do not split this line, it will break configure script */
+#define REGISTER_ENCDEC(X, x) REGISTER_ENCODER(X, x); REGISTER_DECODER(X,x)
 
 #define REGISTER_PARSER(X, x)                                           \
     {                                                                   \
diff --git a/libavdevice/alldevices.c b/libavdevice/alldevices.c
index 1abf21b..d1a5fd8 100644
--- a/libavdevice/alldevices.c
+++ b/libavdevice/alldevices.c
@@ -35,9 +35,8 @@
             av_register_input_format(&ff_##x##_demuxer);                \
     }
 
-#define REGISTER_INOUTDEV(X, x)                                         \
-    REGISTER_OUTDEV(X, x);                                              \
-    REGISTER_INDEV(X, x)
+/* Warning: do not split this line, it will break configure script */
+#define REGISTER_INOUTDEV(X, x) REGISTER_OUTDEV(X, x); REGISTER_INDEV(X, x)
 
 void avdevice_register_all(void)
 {
diff --git a/libavformat/allformats.c b/libavformat/allformats.c
index 739f5a1..e831398 100644
--- a/libavformat/allformats.c
+++ b/libavformat/allformats.c
@@ -39,9 +39,8 @@
             av_register_input_format(&ff_##x##_demuxer);                \
     }
 
-#define REGISTER_MUXDEMUX(X, x)                                         \
-    REGISTER_MUXER(X, x);                                               \
-    REGISTER_DEMUXER(X,x)
+/* Warning: do not split this line, it will break configure script */
+#define REGISTER_MUXDEMUX(X, x) REGISTER_MUXER(X, x); REGISTER_DEMUXER(X,x)
 
 #define REGISTER_PROTOCOL(X, x)                                         \
     {                                                                   \



More information about the ffmpeg-cvslog mailing list