Fix some icc warnings by using enum PixelFormat instead of int where appropriate.

Originally committed as revision 15611 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Carl Eugen Hoyos
2008-10-13 07:42:11 +00:00
parent 40056c32df
commit 95240bf3e3
3 changed files with 5 additions and 5 deletions

View File

@ -30,7 +30,7 @@
#include "avcodec.h"
typedef struct PixelFormatTag {
int pix_fmt;
enum PixelFormat pix_fmt;
unsigned int fourcc;
} PixelFormatTag;