[FFmpeg-cvslog] avutil/error: Include macros.h for MKTAG

Andreas Rheinhardt git at videolan.org
Thu Jul 29 23:27:06 EEST 2021


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Fri Jul 23 07:41:54 2021 +0200| [5088c7c73304d25f791790cece20a291d25b6a18] | committer: Andreas Rheinhardt

avutil/error: Include macros.h for MKTAG

Up until now, including error.h alone does not make the AVERROR_* defines
usable, because they just expand to something involving MKTAG, but
without the header providing MKTAG. So include macros.h, the header
providing MKTAG.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

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

 libavutil/error.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavutil/error.h b/libavutil/error.h
index 71df4da353..0d3269aa6d 100644
--- a/libavutil/error.h
+++ b/libavutil/error.h
@@ -27,6 +27,8 @@
 #include <errno.h>
 #include <stddef.h>
 
+#include "macros.h"
+
 /**
  * @addtogroup lavu_error
  *



More information about the ffmpeg-cvslog mailing list