Unbreak build from 7a5902c556d84a367dd64a003a4e7244fc3a73d1.
---
Unfortunately addding the header only causes msvc to fail:
libavutil/internal.h:206:24: fatal error: crtversion.h: No such file or
directory #include <crtversion.h>
Not sure how to fix that, so I'll just move the pragma to the c files instead.
Vittorio
libavcodec/options.c | 2 ++
libavcodec/options_table.h | 2 --
libavformat/options.c | 4 ++++
3 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/libavcodec/options.c b/libavcodec/options.c
index c00dca0..a433f25 100644
--- a/libavcodec/options.c
+++ b/libavcodec/options.c
@@ -33,7 +33,9 @@
#include <float.h> /* FLT_MIN, FLT_MAX */
#include <string.h>
+FF_DISABLE_DEPRECATION_WARNINGS
#include "options_table.h"
+FF_ENABLE_DEPRECATION_WARNINGS
static const char* context_to_name(void* ptr) {
AVCodecContext *avc= ptr;
diff --git a/libavcodec/options_table.h b/libavcodec/options_table.h
index 66cfc74..ee8f328 100644
--- a/libavcodec/options_table.h
+++ b/libavcodec/options_table.h
@@ -40,7 +40,6 @@
#define AV_CODEC_DEFAULT_BITRATE 200*1000
-FF_DISABLE_DEPRECATION_WARNINGS
static const AVOption avcodec_options[] = {
{"b", "set bitrate (in bits/s)", OFFSET(bit_rate), AV_OPT_TYPE_INT, {.i64 =
AV_CODEC_DEFAULT_BITRATE }, INT_MIN, INT_MAX, V|A|E},
{"bt", "Set video bitrate tolerance (in bits/s). In 1-pass mode, bitrate
tolerance specifies how far "
@@ -476,7 +475,6 @@ static const AVOption avcodec_options[] = {
{"side_data_only_packets", NULL, OFFSET(side_data_only_packets),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, A|V|E },
{NULL},
};
-FF_DISABLE_DEPRECATION_WARNINGS
#undef A
#undef V
diff --git a/libavformat/options.c b/libavformat/options.c
index 996dc31..a6fbbd2 100644
--- a/libavformat/options.c
+++ b/libavformat/options.c
@@ -20,6 +20,8 @@
#include "avformat.h"
#include "avio_internal.h"
#include "internal.h"
+
+#include "libavutil/internal.h"
#include "libavutil/opt.h"
/**
@@ -27,7 +29,9 @@
* Options definition for AVFormatContext.
*/
+FF_DISABLE_DEPRECATION_WARNINGS
#include "options_table.h"
+FF_ENABLE_DEPRECATION_WARNINGS
static const char* format_to_name(void* ptr)
{
--
1.9.5 (Apple Git-50.3)
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel