diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-02-13 10:01:03 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-02-14 05:10:58 +0100 |
commit | 066ad249843bde656265b59110c2521e2b1ce131 (patch) | |
tree | 921dfa0164c25b151d34e98ba336c38bfd71a8c1 /libavcodec | |
parent | 304e916a92bc17385a485bec2f957e192257ddb6 (diff) | |
download | ffmpeg-066ad249843bde656265b59110c2521e2b1ce131.tar.gz |
h264_sei: reorder headers
Also drop unused assert.h.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264_sei.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/h264_sei.c b/libavcodec/h264_sei.c index 2e4017b67c..6fca2c32a9 100644 --- a/libavcodec/h264_sei.c +++ b/libavcodec/h264_sei.c @@ -25,12 +25,10 @@ * @author Michael Niedermayer <michaelni@gmx.at> */ -#include "internal.h" #include "avcodec.h" -#include "h264.h" #include "golomb.h" - -#include <assert.h> +#include "h264.h" +#include "internal.h" static const uint8_t sei_num_clock_ts_table[9] = { 1, 1, 1, 2, 2, 3, 3, 2, 3 |