projects
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
AVOptions: add av_opt_find() as a replacement for av_find_opt.
[ffmpeg.git]
/
ffserver.c
diff --git
a/ffserver.c
b/ffserver.c
index
0f57979
..
2ac7e6a
100644
(file)
--- a/
ffserver.c
+++ b/
ffserver.c
@@
-3944,7
+3944,7
@@
static int ffserver_opt_default(const char *opt, const char *arg,
AVCodecContext *avctx, int type)
{
int ret = 0;
- const AVOption *o = av_
find_opt(avctx, opt, NULL, type, type
);
+ const AVOption *o = av_
opt_find(avctx, opt, NULL, type, 0
);
if(o)
ret = av_set_string3(avctx, opt, arg, 1, NULL);
return ret;