summaryrefslogtreecommitdiff
path: root/libavdevice/xcbgrab.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2015-04-08 17:27:42 +0200
committerDiego Biurrun <diego@biurrun.de>2015-04-09 16:40:12 +0200
commitc201069fac9a76e6604f9d84d76a172434d62200 (patch)
treea01d35dac44bbe040ab0f12639e90ae0af7024d4 /libavdevice/xcbgrab.c
parent27852f2f1dec3749ea79883b70484c841169f747 (diff)
downloadffmpeg-c201069fac9a76e6604f9d84d76a172434d62200.tar.gz
avdevice: Add missing header for NULL_IF_CONFIG_SMALL
Also reshuffle headers into canonical order where appropriate.
Diffstat (limited to 'libavdevice/xcbgrab.c')
-rw-r--r--libavdevice/xcbgrab.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libavdevice/xcbgrab.c b/libavdevice/xcbgrab.c
index 2435c9c1d0..13284ec9d4 100644
--- a/libavdevice/xcbgrab.c
+++ b/libavdevice/xcbgrab.c
@@ -33,14 +33,15 @@
#include <xcb/shm.h>
#endif
-#include "libavformat/avformat.h"
-#include "libavformat/internal.h"
-
+#include "libavutil/internal.h"
#include "libavutil/mathematics.h"
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
#include "libavutil/time.h"
+#include "libavformat/avformat.h"
+#include "libavformat/internal.h"
+
typedef struct XCBGrabContext {
const AVClass *class;