summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2015-08-16 16:11:13 -0400
committerRonald S. Bultje <rsbultje@gmail.com>2015-08-18 12:05:17 -0400
commitad45121d562d99c07ab8f77b01ba4bc610dbe0c0 (patch)
tree0ff71fd98a27694846cf1f8857ae369d7a0841f0 /libavfilter
parentb07d2a250955ef03b63db125c581faf48d206cbd (diff)
options: mark av_get_{int,double,q} as deprecated.
Convert last users to av_opt_get_*() counterparts.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/af_aresample.c17
-rw-r--r--libavfilter/x86/vf_spp.c4
2 files changed, 12 insertions, 9 deletions
diff --git a/libavfilter/af_aresample.c b/libavfilter/af_aresample.c
index 6cb765df1b..f6fdd08a1a 100644
--- a/libavfilter/af_aresample.c
+++ b/libavfilter/af_aresample.c
@@ -80,9 +80,8 @@ static av_cold void uninit(AVFilterContext *ctx)
static int query_formats(AVFilterContext *ctx)
{
AResampleContext *aresample = ctx->priv;
- int out_rate = av_get_int(aresample->swr, "osr", NULL);
- uint64_t out_layout = av_get_int(aresample->swr, "ocl", NULL);
- enum AVSampleFormat out_format = av_get_int(aresample->swr, "osf", NULL);
+ enum AVSampleFormat out_format;
+ int64_t out_rate, out_layout;
AVFilterLink *inlink = ctx->inputs[0];
AVFilterLink *outlink = ctx->outputs[0];
@@ -91,6 +90,9 @@ static int query_formats(AVFilterContext *ctx)
AVFilterFormats *in_samplerates, *out_samplerates;
AVFilterChannelLayouts *in_layouts, *out_layouts;
+ av_opt_get_sample_fmt(aresample->swr, "osf", 0, &out_format);
+ av_opt_get_int(aresample->swr, "osr", 0, &out_rate);
+ av_opt_get_int(aresample->swr, "ocl", 0, &out_layout);
in_formats = ff_all_formats(AVMEDIA_TYPE_AUDIO);
if (!in_formats)
@@ -144,8 +146,7 @@ static int config_output(AVFilterLink *outlink)
AVFilterContext *ctx = outlink->src;
AVFilterLink *inlink = ctx->inputs[0];
AResampleContext *aresample = ctx->priv;
- int out_rate;
- uint64_t out_layout;
+ int64_t out_rate, out_layout;
enum AVSampleFormat out_format;
char inchl_buf[128], outchl_buf[128];
@@ -164,9 +165,9 @@ static int config_output(AVFilterLink *outlink)
if (ret < 0)
return ret;
- out_rate = av_get_int(aresample->swr, "osr", NULL);
- out_layout = av_get_int(aresample->swr, "ocl", NULL);
- out_format = av_get_int(aresample->swr, "osf", NULL);
+ av_opt_get_int(aresample->swr, "osr", 0, &out_rate);
+ av_opt_get_int(aresample->swr, "ocl", 0, &out_layout);
+ av_opt_get_sample_fmt(aresample->swr, "osf", 0, &out_format);
outlink->time_base = (AVRational) {1, out_rate};
av_assert0(outlink->sample_rate == out_rate);
diff --git a/libavfilter/x86/vf_spp.c b/libavfilter/x86/vf_spp.c
index 1cfb9e81f7..45a9eb068c 100644
--- a/libavfilter/x86/vf_spp.c
+++ b/libavfilter/x86/vf_spp.c
@@ -223,8 +223,10 @@ av_cold void ff_spp_init_x86(SPPContext *s)
int cpu_flags = av_get_cpu_flags();
if (cpu_flags & AV_CPU_FLAG_MMX) {
+ int64_t bps;
s->store_slice = store_slice_mmx;
- if (av_get_int(s->dct, "bits_per_sample", NULL) <= 8) {
+ av_opt_get_int(s->dct, "bits_per_sample", 0, &bps);
+ if (bps <= 8) {
switch (s->mode) {
case 0: s->requantize = hardthresh_mmx; break;
case 1: s->requantize = softthresh_mmx; break;