mirror of https://git.ffmpeg.org/ffmpeg.git
cmdutils: parse options for swr
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
c1d404b9e4
commit
be4cde226a
18
cmdutils.c
18
cmdutils.c
|
@ -54,6 +54,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
struct SwsContext *sws_opts;
|
struct SwsContext *sws_opts;
|
||||||
|
SwrContext *swr_opts;
|
||||||
AVDictionary *format_opts, *codec_opts;
|
AVDictionary *format_opts, *codec_opts;
|
||||||
|
|
||||||
const int this_year = 2012;
|
const int this_year = 2012;
|
||||||
|
@ -66,6 +67,7 @@ void init_opts(void)
|
||||||
sws_opts = sws_getContext(16, 16, 0, 16, 16, 0, SWS_BICUBIC,
|
sws_opts = sws_getContext(16, 16, 0, 16, 16, 0, SWS_BICUBIC,
|
||||||
NULL, NULL, NULL);
|
NULL, NULL, NULL);
|
||||||
#endif
|
#endif
|
||||||
|
swr_opts = swr_alloc();
|
||||||
}
|
}
|
||||||
|
|
||||||
void uninit_opts(void)
|
void uninit_opts(void)
|
||||||
|
@ -74,6 +76,7 @@ void uninit_opts(void)
|
||||||
sws_freeContext(sws_opts);
|
sws_freeContext(sws_opts);
|
||||||
sws_opts = NULL;
|
sws_opts = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
swr_free(&swr_opts);
|
||||||
av_dict_free(&format_opts);
|
av_dict_free(&format_opts);
|
||||||
av_dict_free(&codec_opts);
|
av_dict_free(&codec_opts);
|
||||||
}
|
}
|
||||||
|
@ -415,10 +418,10 @@ void parse_loglevel(int argc, char **argv, const OptionDef *options)
|
||||||
#define FLAGS(o) ((o)->type == AV_OPT_TYPE_FLAGS) ? AV_DICT_APPEND : 0
|
#define FLAGS(o) ((o)->type == AV_OPT_TYPE_FLAGS) ? AV_DICT_APPEND : 0
|
||||||
int opt_default(const char *opt, const char *arg)
|
int opt_default(const char *opt, const char *arg)
|
||||||
{
|
{
|
||||||
const AVOption *oc, *of, *os;
|
const AVOption *oc, *of, *os, *oswr;
|
||||||
char opt_stripped[128];
|
char opt_stripped[128];
|
||||||
const char *p;
|
const char *p;
|
||||||
const AVClass *cc = avcodec_get_class(), *fc = avformat_get_class(), *sc;
|
const AVClass *cc = avcodec_get_class(), *fc = avformat_get_class(), *sc, *swr_class;
|
||||||
|
|
||||||
if (!(p = strchr(opt, ':')))
|
if (!(p = strchr(opt, ':')))
|
||||||
p = opt + strlen(opt);
|
p = opt + strlen(opt);
|
||||||
|
@ -444,8 +447,17 @@ int opt_default(const char *opt, const char *arg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
swr_class = swr_get_class();
|
||||||
|
if (!oc && !of && !os && (oswr = av_opt_find(&swr_class, opt, NULL, 0,
|
||||||
|
AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ))) {
|
||||||
|
int ret = av_opt_set(swr_opts, opt, arg, 0);
|
||||||
|
if (ret < 0) {
|
||||||
|
av_log(NULL, AV_LOG_ERROR, "Error setting option %s.\n", opt);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (oc || of || os)
|
if (oc || of || os || oswr)
|
||||||
return 0;
|
return 0;
|
||||||
av_log(NULL, AV_LOG_ERROR, "Unrecognized option '%s'\n", opt);
|
av_log(NULL, AV_LOG_ERROR, "Unrecognized option '%s'\n", opt);
|
||||||
return AVERROR_OPTION_NOT_FOUND;
|
return AVERROR_OPTION_NOT_FOUND;
|
||||||
|
|
|
@ -51,6 +51,7 @@ extern const int this_year;
|
||||||
extern AVCodecContext *avcodec_opts[AVMEDIA_TYPE_NB];
|
extern AVCodecContext *avcodec_opts[AVMEDIA_TYPE_NB];
|
||||||
extern AVFormatContext *avformat_opts;
|
extern AVFormatContext *avformat_opts;
|
||||||
extern struct SwsContext *sws_opts;
|
extern struct SwsContext *sws_opts;
|
||||||
|
extern struct SwrContext *swr_opts;
|
||||||
extern AVDictionary *format_opts, *codec_opts;
|
extern AVDictionary *format_opts, *codec_opts;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue