[FFmpeg-cvslog] Revert "lavfi/ebur128: fix format negociation for output."
Clément Bœsch
git at videolan.org
Thu Mar 14 06:38:35 CET 2013
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Thu Mar 14 06:25:20 2013 +0100| [fe898a037d99108b3d2ca29bb1d69887566d278d] | committer: Clément Bœsch
Revert "lavfi/ebur128: fix format negociation for output."
This reverts commit 9efcfbed9dd64679145f5f39d9a812dfeea97172.
All the shame on me; this commit is actually causing more problems
(broken outputs but also crashes) than it was solving.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fe898a037d99108b3d2ca29bb1d69887566d278d
---
libavfilter/f_ebur128.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/libavfilter/f_ebur128.c b/libavfilter/f_ebur128.c
index acf29d5..05ea630 100644
--- a/libavfilter/f_ebur128.c
+++ b/libavfilter/f_ebur128.c
@@ -690,6 +690,22 @@ static int query_formats(AVFilterContext *ctx)
outlink = ctx->outputs[1];
}
+ /* set audio output formats (same as input since it's just a passthrough) */
+ formats = ff_make_format_list(sample_fmts);
+ if (!formats)
+ return AVERROR(ENOMEM);
+ ff_formats_ref(formats, &outlink->in_formats);
+
+ layouts = ff_all_channel_layouts();
+ if (!layouts)
+ return AVERROR(ENOMEM);
+ ff_channel_layouts_ref(layouts, &outlink->in_channel_layouts);
+
+ formats = ff_make_format_list(input_srate);
+ if (!formats)
+ return AVERROR(ENOMEM);
+ ff_formats_ref(formats, &outlink->in_samplerates);
+
return 0;
}
More information about the ffmpeg-cvslog
mailing list