diff --git a/fftools/textformat/tf_compact.c b/fftools/textformat/tf_compact.c index 825b67bc6e..31bfc81513 100644 --- a/fftools/textformat/tf_compact.c +++ b/fftools/textformat/tf_compact.c @@ -25,12 +25,9 @@ #include #include "avtextformat.h" -#include -#include -#include -#include -#include -#include +#include "libavutil/bprint.h" +#include "libavutil/error.h" +#include "libavutil/opt.h" #define writer_w8(wctx_, b_) (wctx_)->writer->writer->writer_w8((wctx_)->writer, b_) diff --git a/fftools/textformat/tf_default.c b/fftools/textformat/tf_default.c index 23575024c1..86582829e4 100644 --- a/fftools/textformat/tf_default.c +++ b/fftools/textformat/tf_default.c @@ -25,10 +25,8 @@ #include #include "avtextformat.h" -#include -#include -#include -#include +#include "libavutil/bprint.h" +#include "libavutil/opt.h" #define writer_w8(wctx_, b_) (wctx_)->writer->writer->writer_w8((wctx_)->writer, b_) #define writer_put_str(wctx_, str_) (wctx_)->writer->writer->writer_put_str((wctx_)->writer, str_) diff --git a/fftools/textformat/tf_flat.c b/fftools/textformat/tf_flat.c index 6971593c77..919d44bc6b 100644 --- a/fftools/textformat/tf_flat.c +++ b/fftools/textformat/tf_flat.c @@ -25,12 +25,9 @@ #include #include "avtextformat.h" -#include -#include -#include -#include -#include -#include +#include "libavutil/bprint.h" +#include "libavutil/error.h" +#include "libavutil/opt.h" #define writer_w8(wctx_, b_) (wctx_)->writer->writer->writer_w8((wctx_)->writer, b_) #define writer_put_str(wctx_, str_) (wctx_)->writer->writer->writer_put_str((wctx_)->writer, str_) diff --git a/fftools/textformat/tf_ini.c b/fftools/textformat/tf_ini.c index 1f4216069f..d8099ff92e 100644 --- a/fftools/textformat/tf_ini.c +++ b/fftools/textformat/tf_ini.c @@ -25,10 +25,9 @@ #include #include "avtextformat.h" -#include -#include -#include -#include + +#include "libavutil/bprint.h" +#include "libavutil/opt.h" #define writer_w8(wctx_, b_) (wctx_)->writer->writer->writer_w8((wctx_)->writer, b_) #define writer_put_str(wctx_, str_) (wctx_)->writer->writer->writer_put_str((wctx_)->writer, str_) diff --git a/fftools/textformat/tf_json.c b/fftools/textformat/tf_json.c index de27a36e7e..c26a912435 100644 --- a/fftools/textformat/tf_json.c +++ b/fftools/textformat/tf_json.c @@ -25,10 +25,8 @@ #include #include "avtextformat.h" -#include -#include -#include -#include +#include "libavutil/bprint.h" +#include "libavutil/opt.h" #define writer_w8(wctx_, b_) (wctx_)->writer->writer->writer_w8((wctx_)->writer, b_) #define writer_put_str(wctx_, str_) (wctx_)->writer->writer->writer_put_str((wctx_)->writer, str_) diff --git a/fftools/textformat/tf_xml.c b/fftools/textformat/tf_xml.c index 57171c4cb3..6c89d01e9d 100644 --- a/fftools/textformat/tf_xml.c +++ b/fftools/textformat/tf_xml.c @@ -25,12 +25,9 @@ #include #include "avtextformat.h" -#include -#include -#include -#include -#include -#include +#include "libavutil/bprint.h" +#include "libavutil/error.h" +#include "libavutil/opt.h" #define writer_w8(wctx_, b_) (wctx_)->writer->writer->writer_w8((wctx_)->writer, b_) #define writer_put_str(wctx_, str_) (wctx_)->writer->writer->writer_put_str((wctx_)->writer, str_)