summaryrefslogtreecommitdiff
path: root/toxav/video.h
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-09-01 00:33:20 +0100
committeriphydf <iphydf@users.noreply.github.com>2016-09-01 16:35:46 +0100
commit77db27331eb326615395fa59f3741424f85887bb (patch)
tree233270b558c30f9a045e30e09c2d5681c800a139 /toxav/video.h
parentad135181531e567255c314593984d16cdb839eba (diff)
Sort #includes in all source files.
Diffstat (limited to 'toxav/video.h')
-rw-r--r--toxav/video.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/toxav/video.h b/toxav/video.h
index c6a473c2..6aeeaef6 100644
--- a/toxav/video.h
+++ b/toxav/video.h
@@ -24,9 +24,10 @@
24 24
25#include <vpx/vpx_decoder.h> 25#include <vpx/vpx_decoder.h>
26#include <vpx/vpx_encoder.h> 26#include <vpx/vpx_encoder.h>
27#include <vpx/vp8dx.h>
28#include <vpx/vp8cx.h>
29#include <vpx/vpx_image.h> 27#include <vpx/vpx_image.h>
28
29#include <vpx/vp8cx.h>
30#include <vpx/vp8dx.h>
30#define VIDEO_CODEC_DECODER_INTERFACE (vpx_codec_vp8_dx()) 31#define VIDEO_CODEC_DECODER_INTERFACE (vpx_codec_vp8_dx())
31#define VIDEO_CODEC_ENCODER_INTERFACE (vpx_codec_vp8_cx()) 32#define VIDEO_CODEC_ENCODER_INTERFACE (vpx_codec_vp8_cx())
32 33