diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-06 18:46:30 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-10 21:17:55 +0200 |
commit | ee77ee77a1e04eebab066b73d4687ee19c234136 (patch) | |
tree | 0bc31ba54518b6e0f388b209adb50bc85c5fbada /libavformat/concat.c | |
parent | d6afd6c30342572ccc44f8df7d498d189d7c6ac5 (diff) | |
download | ffmpeg-ee77ee77a1e04eebab066b73d4687ee19c234136.tar.gz |
avformat: Remove avformat and avio headers from protocols
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/concat.c')
-rw-r--r-- | libavformat/concat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/concat.c b/libavformat/concat.c index 825e43a7fa..e1d57de557 100644 --- a/libavformat/concat.c +++ b/libavformat/concat.c @@ -21,13 +21,15 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <string.h> + #include "config_components.h" #include "libavutil/avstring.h" #include "libavutil/bprint.h" +#include "libavutil/error.h" #include "libavutil/mem.h" -#include "avformat.h" #include "avio_internal.h" #include "url.h" |