comparison integer.h @ 485:b4ff998c79e3 libavutil

add missing #include "common.h" to libavutil headers
author mru
date Wed, 19 Mar 2008 08:47:31 +0000
parents f4187c1c15a6
children bd4052d9050c
comparison
equal deleted inserted replaced
484:454969cf56c1 485:b4ff998c79e3
27 27
28 #ifndef FFMPEG_INTEGER_H 28 #ifndef FFMPEG_INTEGER_H
29 #define FFMPEG_INTEGER_H 29 #define FFMPEG_INTEGER_H
30 30
31 #include <stdint.h> 31 #include <stdint.h>
32 #include "common.h"
32 33
33 #define AV_INTEGER_SIZE 8 34 #define AV_INTEGER_SIZE 8
34 35
35 typedef struct AVInteger{ 36 typedef struct AVInteger{
36 uint16_t v[AV_INTEGER_SIZE]; 37 uint16_t v[AV_INTEGER_SIZE];