Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2015-04-08 18:27:42 +0300
committerDiego Biurrun <diego@biurrun.de>2015-04-09 17:40:12 +0300
commitc201069fac9a76e6604f9d84d76a172434d62200 (patch)
treea01d35dac44bbe040ab0f12639e90ae0af7024d4 /libavdevice/sndio_dec.c
parent27852f2f1dec3749ea79883b70484c841169f747 (diff)
avdevice: Add missing header for NULL_IF_CONFIG_SMALL
Also reshuffle headers into canonical order where appropriate.
Diffstat (limited to 'libavdevice/sndio_dec.c')
-rw-r--r--libavdevice/sndio_dec.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libavdevice/sndio_dec.c b/libavdevice/sndio_dec.c
index 58caaa1f44..24c6d1e7da 100644
--- a/libavdevice/sndio_dec.c
+++ b/libavdevice/sndio_dec.c
@@ -22,11 +22,13 @@
#include <stdint.h>
#include <sndio.h>
-#include "libavformat/avformat.h"
-#include "libavformat/internal.h"
+#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "libavutil/time.h"
+#include "libavformat/avformat.h"
+#include "libavformat/internal.h"
+
#include "sndio_common.h"
static av_cold int audio_read_header(AVFormatContext *s1)