Use enum instead of integer types where appropriate.

Originally committed as revision 20482 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Carl Eugen Hoyos 2009-11-08 23:48:15 +00:00
parent 80454494de
commit 0f87b77176
2 changed files with 2 additions and 2 deletions

View File

@ -66,7 +66,7 @@ static int raw_write_packet(struct AVFormatContext *s, AVPacket *pkt)
static int raw_read_header(AVFormatContext *s, AVFormatParameters *ap) static int raw_read_header(AVFormatContext *s, AVFormatParameters *ap)
{ {
AVStream *st; AVStream *st;
int id; enum CodecID id;
st = av_new_stream(s, 0); st = av_new_stream(s, 0);
if (!st) if (!st)

View File

@ -75,7 +75,7 @@ int ff_rtmp_packet_read(URLContext *h, RTMPPacket *p,
uint8_t hdr, t, buf[16]; uint8_t hdr, t, buf[16];
int channel_id, timestamp, data_size, offset = 0; int channel_id, timestamp, data_size, offset = 0;
uint32_t extra = 0; uint32_t extra = 0;
uint8_t type; enum RTMPPacketType type;
if (url_read(h, &hdr, 1) != 1) if (url_read(h, &hdr, 1) != 1)
return AVERROR(EIO); return AVERROR(EIO);