You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
Use enum typers instead of int.
Patch by Diego 'Flameeyes' Pettenò: flameeyes gmail Originally committed as revision 15517 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
committed by
Benoit Fouet
parent
529dae12f7
commit
fb65d2ca84
@@ -122,7 +122,8 @@ static int au_read_header(AVFormatContext *s,
|
||||
int size;
|
||||
unsigned int tag;
|
||||
ByteIOContext *pb = s->pb;
|
||||
unsigned int id, codec, channels, rate;
|
||||
unsigned int id, channels, rate;
|
||||
enum CodecID codec;
|
||||
AVStream *st;
|
||||
|
||||
/* check ".snd" header */
|
||||
|
||||
Reference in New Issue
Block a user