summaryrefslogtreecommitdiffstats
path: root/libvpx/examples/decoder_tmpl.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvpx/examples/decoder_tmpl.c')
-rw-r--r--libvpx/examples/decoder_tmpl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libvpx/examples/decoder_tmpl.c b/libvpx/examples/decoder_tmpl.c
index 597fea2..3e55352 100644
--- a/libvpx/examples/decoder_tmpl.c
+++ b/libvpx/examples/decoder_tmpl.c
@@ -12,14 +12,14 @@
/*
@*INTRODUCTION
*/
-#include "vpx_config.h"
+#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
-#include <stdarg.h>
#include <string.h>
#define VPX_CODEC_DISABLE_COMPAT 1
-#include "vpx/vpx_decoder.h"
+#include "./vpx_config.h"
#include "vpx/vp8dx.h"
+#include "vpx/vpx_decoder.h"
#define interface (vpx_codec_vp8_dx())
@EXTRA_INCLUDES