mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-23 23:40:15 +01: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
@@ -389,7 +389,8 @@ static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1,
|
||||
RTSPState *rt = s->priv_data;
|
||||
char buf1[64], st_type[64];
|
||||
const char *p;
|
||||
int codec_type, payload_type, i;
|
||||
enum CodecType codec_type;
|
||||
int payload_type, i;
|
||||
AVStream *st;
|
||||
RTSPStream *rtsp_st;
|
||||
struct in_addr sdp_ip;
|
||||
|
||||
Reference in New Issue
Block a user