mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Silence two icc warnings:
/home/melanson/fate/source/ffserver.c(4349): warning #188: enumerated type mixed with another type audio_enc.codec_id = audio_id; ^ /home/melanson/fate/source/ffserver.c(4354): warning #188: enumerated type mixed with another type video_enc.codec_id = video_id; ^ Originally committed as revision 16397 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9d705050c1
commit
aed464654b
@ -3686,7 +3686,7 @@ static void add_codec(FFStream *stream, AVCodecContext *av)
|
||||
memcpy(st->codec, av, sizeof(AVCodecContext));
|
||||
}
|
||||
|
||||
static int opt_audio_codec(const char *arg)
|
||||
static enum CodecID opt_audio_codec(const char *arg)
|
||||
{
|
||||
AVCodec *p= avcodec_find_encoder_by_name(arg);
|
||||
|
||||
@ -3696,7 +3696,7 @@ static int opt_audio_codec(const char *arg)
|
||||
return p->id;
|
||||
}
|
||||
|
||||
static int opt_video_codec(const char *arg)
|
||||
static enum CodecID opt_video_codec(const char *arg)
|
||||
{
|
||||
AVCodec *p= avcodec_find_encoder_by_name(arg);
|
||||
|
||||
@ -3753,7 +3753,7 @@ static int parse_ffconfig(const char *filename)
|
||||
FFStream **last_stream, *stream, *redirect;
|
||||
FFStream **last_feed, *feed;
|
||||
AVCodecContext audio_enc, video_enc;
|
||||
int audio_id, video_id;
|
||||
enum CodecID audio_id, video_id;
|
||||
|
||||
f = fopen(filename, "r");
|
||||
if (!f) {
|
||||
|
Loading…
Reference in New Issue
Block a user