comparison raw.h @ 8023:76f6a08c9fe6 libavcodec

Fix some icc warnings by using enum PixelFormat instead of int where appropriate.
author cehoyos
date Mon, 13 Oct 2008 07:42:11 +0000
parents c4a4495715dd
children 04423b2f6e0b
comparison
equal deleted inserted replaced
8022:21c3e313709e 8023:76f6a08c9fe6
28 #define AVCODEC_RAW_H 28 #define AVCODEC_RAW_H
29 29
30 #include "avcodec.h" 30 #include "avcodec.h"
31 31
32 typedef struct PixelFormatTag { 32 typedef struct PixelFormatTag {
33 int pix_fmt; 33 enum PixelFormat pix_fmt;
34 unsigned int fourcc; 34 unsigned int fourcc;
35 } PixelFormatTag; 35 } PixelFormatTag;
36 36
37 extern const PixelFormatTag ff_raw_pixelFormatTags[]; 37 extern const PixelFormatTag ff_raw_pixelFormatTags[];
38 38