[SCM] libav/experimental: C files should #include the header files of the same name.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:36:06 UTC 2013


The following commit has been merged in the experimental branch:
commit 77652a6aaff5c06267803f3770f8a613c7252171
Author: Diego Biurrun <diego at biurrun.de>
Date:   Sun Jan 25 22:40:43 2009 +0000

    C files should #include the header files of the same name.
    
    Originally committed as revision 16792 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavutil/log.c b/libavutil/log.c
index 9248752..5fec332 100644
--- a/libavutil/log.c
+++ b/libavutil/log.c
@@ -25,6 +25,7 @@
  */
 
 #include "avutil.h"
+#include "log.h"
 
 int av_log_level = AV_LOG_INFO;
 
diff --git a/libavutil/mem.c b/libavutil/mem.c
index 45cd986..5413010 100644
--- a/libavutil/mem.c
+++ b/libavutil/mem.c
@@ -33,6 +33,8 @@
 #include <malloc.h>
 #endif
 
+#include "mem.h"
+
 /* you can redefine av_malloc and av_free in your project to use your
    memory allocator. You do not need to suppress this file because the
    linker will do it automatically */

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list