summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorMina Nagy Zaki <mnzaki@gmail.com>2011-07-14 14:18:13 +0300
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-08-14 10:31:23 +0200
commit0a2295815dac9a924513555ce1f7491c1f5f1765 (patch)
tree24c0d702ddf2ea9caa4f8c8d9526c61cdb1becf3 /libavfilter
parent3f07d40ea2861e0c2a1ce6cb56907e9e888a3491 (diff)
lavfi: add aformat filter
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/Makefile1
-rw-r--r--libavfilter/af_aformat.c114
-rw-r--r--libavfilter/allfilters.c1
-rw-r--r--libavfilter/avfilter.h4
4 files changed, 118 insertions, 2 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index 27b6849591..a8ae42c7f3 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -18,6 +18,7 @@ OBJS = allfilters.o \
OBJS-$(CONFIG_AVCODEC) += avcodec.o
+OBJS-$(CONFIG_AFORMAT_FILTER) += af_aformat.o
OBJS-$(CONFIG_ANULL_FILTER) += af_anull.o
OBJS-$(CONFIG_ANULLSRC_FILTER) += asrc_anullsrc.o
diff --git a/libavfilter/af_aformat.c b/libavfilter/af_aformat.c
new file mode 100644
index 0000000000..f4ea0dd887
--- /dev/null
+++ b/libavfilter/af_aformat.c
@@ -0,0 +1,114 @@
+/*
+ * Copyright (c) 2011 Mina Nagy Zaki
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+/**
+ * @file
+ * format audio filter
+ */
+
+#include "libavutil/audioconvert.h"
+#include "avfilter.h"
+#include "internal.h"
+
+typedef struct {
+ AVFilterFormats *formats, *chlayouts, *packing;
+} AFormatContext;
+
+static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
+{
+ AFormatContext * const aformat = ctx->priv;
+ char *arg, *fmt_str;
+ int64_t fmt;
+ int ret;
+
+ arg = strsep(&args, ":");
+ if (!arg) goto arg_fail;
+ if (!strcmp(arg, "all")) {
+ aformat->formats = avfilter_all_formats(AVMEDIA_TYPE_AUDIO);
+ } else {
+ while (fmt_str = strsep(&arg, ",")) {
+ if ((ret = ff_parse_sample_format((int*)&fmt, fmt_str, ctx)) < 0)
+ return ret;
+ avfilter_add_format(&aformat->formats, fmt);
+ }
+ }
+
+ arg = strsep(&args, ":");
+ if (!arg) goto arg_fail;
+ if (!strcmp(arg, "all")) {
+ aformat->chlayouts = avfilter_all_channel_layouts();
+ } else {
+ while (fmt_str = strsep(&arg, ",")) {
+ if ((ret = ff_parse_channel_layout(&fmt, fmt_str, ctx)) < 0)
+ return ret;
+ avfilter_add_format(&aformat->chlayouts, fmt);
+ }
+ }
+
+ arg = strsep(&args, ":");
+ if (!arg) goto arg_fail;
+ if (!strcmp(arg, "all")) {
+ aformat->packing = avfilter_all_packing_formats();
+ } else {
+ while (fmt_str = strsep(&arg, ",")) {
+ if ((ret = ff_parse_packing_format((int*)&fmt, fmt_str, ctx)) < 0)
+ return ret;
+ avfilter_add_format(&aformat->packing, fmt);
+ }
+ }
+
+ return 0;
+
+arg_fail:
+ av_log(ctx, AV_LOG_ERROR, "Invalid arguments, they must be of the form "
+ "sample_fmts:channel_layouts:packing_fmts\n");
+ return AVERROR(EINVAL);
+}
+
+static int query_formats(AVFilterContext *ctx)
+{
+ AFormatContext * const aformat = ctx->priv;
+
+ avfilter_set_common_sample_formats (ctx, aformat->formats);
+ avfilter_set_common_channel_layouts(ctx, aformat->chlayouts);
+ avfilter_set_common_packing_formats(ctx, aformat->packing);
+ return 0;
+}
+
+static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *insamplesref)
+{
+ avfilter_filter_samples(inlink->dst->outputs[0], insamplesref);
+}
+
+AVFilter avfilter_af_aformat = {
+ .name = "aformat",
+ .description = NULL_IF_CONFIG_SMALL("Convert the input audio to one of the specified formats."),
+ .init = init,
+ .query_formats = query_formats,
+ .priv_size = sizeof(AFormatContext),
+
+ .inputs = (AVFilterPad[]) {{ .name = "default",
+ .type = AVMEDIA_TYPE_AUDIO,
+ .filter_samples = filter_samples},
+ { .name = NULL}},
+ .outputs = (AVFilterPad[]) {{ .name = "default",
+ .type = AVMEDIA_TYPE_AUDIO},
+ { .name = NULL}},
+};
diff --git a/libavfilter/allfilters.c b/libavfilter/allfilters.c
index 8fd06099be..fc693ab16b 100644
--- a/libavfilter/allfilters.c
+++ b/libavfilter/allfilters.c
@@ -34,6 +34,7 @@ void avfilter_register_all(void)
return;
initialized = 1;
+ REGISTER_FILTER (AFORMAT, aformat, af);
REGISTER_FILTER (ANULL, anull, af);
REGISTER_FILTER (ANULLSRC, anullsrc, asrc);
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h
index 472406f2b4..899e4288dd 100644
--- a/libavfilter/avfilter.h
+++ b/libavfilter/avfilter.h
@@ -29,8 +29,8 @@
#include "libavutil/rational.h"
#define LIBAVFILTER_VERSION_MAJOR 2
-#define LIBAVFILTER_VERSION_MINOR 29
-#define LIBAVFILTER_VERSION_MICRO 2
+#define LIBAVFILTER_VERSION_MINOR 30
+#define LIBAVFILTER_VERSION_MICRO 0
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \