mirror of https://git.ffmpeg.org/ffmpeg.git
ffmpeg: look for encoding options in both avcodec and avformat
This patch is the same as 8a1714ad85
but
applied to encoding. It fixes the current clash of the -password option
between tta decoder and the icecast protocol.
This commit is contained in:
parent
81a663f49e
commit
11aab8d6cb
|
@ -2014,8 +2014,13 @@ loop_end:
|
||||||
const AVClass *class = avcodec_get_class();
|
const AVClass *class = avcodec_get_class();
|
||||||
const AVOption *option = av_opt_find(&class, e->key, NULL, 0,
|
const AVOption *option = av_opt_find(&class, e->key, NULL, 0,
|
||||||
AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ);
|
AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ);
|
||||||
if (!option)
|
const AVClass *fclass = avformat_get_class();
|
||||||
|
const AVOption *foption = av_opt_find(&fclass, e->key, NULL, 0,
|
||||||
|
AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ);
|
||||||
|
if (!option || foption)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|
||||||
if (!(option->flags & AV_OPT_FLAG_ENCODING_PARAM)) {
|
if (!(option->flags & AV_OPT_FLAG_ENCODING_PARAM)) {
|
||||||
av_log(NULL, AV_LOG_ERROR, "Codec AVOption %s (%s) specified for "
|
av_log(NULL, AV_LOG_ERROR, "Codec AVOption %s (%s) specified for "
|
||||||
"output file #%d (%s) is not an encoding option.\n", e->key,
|
"output file #%d (%s) is not an encoding option.\n", e->key,
|
||||||
|
|
Loading…
Reference in New Issue