X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=ffserver.c;h=bddcb7d2b4ea31073e30e203e3c312213823298a;hb=2b693546ad3a8ac16bdce0b9483dc8ae7b3fdb95;hp=5531aacd2aba877f3cf40fd36fe43d991981c77e;hpb=d77294c5e404c8a214da0e74f7836390b48b2dba;p=ffmpeg diff --git a/ffserver.c b/ffserver.c index 5531aacd2ab..bddcb7d2b4e 100644 --- a/ffserver.c +++ b/ffserver.c @@ -1872,7 +1872,7 @@ static int http_parse_request(HTTPContext *c) static void fmt_bytecount(AVIOContext *pb, int64_t count) { - static const char *suffix = " kMGTP"; + static const char suffix[] = " kMGTP"; const char *s; for (s = suffix; count >= 100000 && s[1]; count /= 1000, s++); @@ -4221,8 +4221,8 @@ static int parse_ffconfig(const char *filename) } stream->fmt = ffserver_guess_format(NULL, stream->filename, NULL); - avcodec_get_context_defaults2(&video_enc, AVMEDIA_TYPE_VIDEO); - avcodec_get_context_defaults2(&audio_enc, AVMEDIA_TYPE_AUDIO); + avcodec_get_context_defaults3(&video_enc, NULL); + avcodec_get_context_defaults3(&audio_enc, NULL); audio_id = CODEC_ID_NONE; video_id = CODEC_ID_NONE;