diff options
Diffstat (limited to 'contrib/ffmpeg/libavcodec/bmp.h')
-rw-r--r-- | contrib/ffmpeg/libavcodec/bmp.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/ffmpeg/libavcodec/bmp.h b/contrib/ffmpeg/libavcodec/bmp.h index cf6ace845..cbbd21ce9 100644 --- a/contrib/ffmpeg/libavcodec/bmp.h +++ b/contrib/ffmpeg/libavcodec/bmp.h @@ -19,6 +19,11 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef FFMPEG_BMP_H +#define FFMPEG_BMP_H + +#include "avcodec.h" + typedef struct BMPContext { AVFrame picture; } BMPContext; @@ -29,3 +34,5 @@ typedef enum { BMP_RLE4 =2, BMP_BITFIELDS =3, } BiCompression; + +#endif /* FFMPEG_BMP_H */ |