summaryrefslogtreecommitdiff
path: root/libavformat/fifo_test.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2018-02-07 00:29:55 -0300
committerJames Almer <jamrial@gmail.com>2018-02-07 00:30:00 -0300
commit8318bf17513529c86545dfaeec489636d77df78d (patch)
tree308e1ba133f1537d148859f4d82a30a23156c39c /libavformat/fifo_test.c
parente8323c42c19f58b84c5742cc3c734a4a2f3737af (diff)
avformat/fifo_test: remove network.h include
It's not needed, and fixes compilation with network disabled. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/fifo_test.c')
-rw-r--r--libavformat/fifo_test.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libavformat/fifo_test.c b/libavformat/fifo_test.c
index 188e607855..02ec215cbb 100644
--- a/libavformat/fifo_test.c
+++ b/libavformat/fifo_test.c
@@ -20,12 +20,13 @@
*/
#include <stdlib.h>
+
#include "libavutil/opt.h"
#include "libavutil/time.h"
#include "libavutil/avassert.h"
-#include "libavformat/avformat.h"
-#include "libavformat/url.h"
-#include "libavformat/network.h"
+
+#include "avformat.h"
+#include "url.h"
/* Implementation of mock muxer to simulate real muxer failures */