[FFmpeg-cvslog] avutil/log: add code to test av_log()

Michael Niedermayer git at videolan.org
Thu Apr 3 22:54:15 CEST 2014


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Apr  3 22:38:30 2014 +0200| [1f8a6bef78284849372d0128ab3ea87f825142db] | committer: Michael Niedermayer

avutil/log: add code to test av_log()

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavutil/Makefile |    1 +
 libavutil/log.c    |   23 +++++++++++++++++++++++
 2 files changed, 24 insertions(+)

diff --git a/libavutil/Makefile b/libavutil/Makefile
index a90347c..d2ebebc 100644
--- a/libavutil/Makefile
+++ b/libavutil/Makefile
@@ -158,6 +158,7 @@ TESTPROGS = adler32                                                     \
             lfg                                                         \
             lls1                                                        \
             lls2                                                        \
+            log                                                         \
             md5                                                         \
             murmur3                                                     \
             opt                                                         \
diff --git a/libavutil/log.c b/libavutil/log.c
index 3a6ab12..843d2e9 100644
--- a/libavutil/log.c
+++ b/libavutil/log.c
@@ -375,3 +375,26 @@ void avpriv_report_missing_feature(void *avc, const char *msg, ...)
     missing_feature_sample(0, avc, msg, argument_list);
     va_end(argument_list);
 }
+
+#ifdef TEST
+// LCOV_EXCL_START
+#include <string.h>
+
+int main(int argc, char **argv)
+{
+    int i;
+    av_log_set_level(AV_LOG_DEBUG);
+    for (use_color=0; use_color<=256; use_color = 255*use_color+1) {
+        av_log(NULL, AV_LOG_FATAL, "use_color: %d\n", use_color);
+        for (i = AV_LOG_DEBUG; i>=AV_LOG_QUIET; i-=8) {
+            av_log(NULL, i, " %d", i);
+            av_log(NULL, AV_LOG_INFO, "e ");
+            av_log(NULL, i + 256*123, "C%d", i);
+            av_log(NULL, AV_LOG_INFO, "e");
+        }
+        av_log(NULL, AV_LOG_PANIC, "\n");
+    }
+    return 0;
+}
+// LCOV_EXCL_STOP
+#endif



More information about the ffmpeg-cvslog mailing list