update ffmpeg.git files for newer versions
[goodguy/cinelerra.git] / cinelerra-5.1 / thirdparty / src / ffmpeg.git.patch4
index 02c274281d4e16ff014c1330766c691f65caa2f0..722fe2d02c046d09495c7f2e4fa65b28f923997e 100644 (file)
@@ -1,29 +1,10 @@
-diff --git a/libavfilter/af_aformat.c b/libavfilter/af_aformat.c
-index 1a702778c3..232d629ba0 100644
---- a/libavfilter/af_aformat.c
-+++ b/libavfilter/af_aformat.c
-@@ -112,6 +112,16 @@ static av_cold int init(AVFilterContext *ctx)
-     return 0;
- }
-+#define DEL_FIELD(p,mem,fld) if( p->mem ) { av_freep(&p->mem->fld); av_freep(&p->mem); }
-+
-+static av_cold void uninit(AVFilterContext *ctx)
-+{
-+    AFormatContext *s = ctx->priv;
-+    DEL_FIELD(s, formats, formats);
-+    DEL_FIELD(s, sample_rates, formats);
-+    DEL_FIELD(s, channel_layouts, channel_layouts);
-+}
-+
- static int query_formats(AVFilterContext *ctx)
- {
-     AFormatContext *s = ctx->priv;
-@@ -149,6 +159,7 @@ AVFilter ff_af_aformat = {
-     .name          = "aformat",
-     .description   = NULL_IF_CONFIG_SMALL("Convert the input audio to one of the specified formats."),
-     .init          = init,
-+    .uninit        = uninit,
-     .query_formats = query_formats,
-     .priv_size     = sizeof(AFormatContext),
-     .priv_class    = &aformat_class,
+--- a/libavformat/avidec.c
++++ b/libavformat/avidec.c
+@@ -1995,6 +1995,7 @@
+     .priv_data_size = sizeof(AVIContext),
+     .flags_internal = FF_FMT_INIT_CLEANUP,
+     .extensions     = "avi",
++    .flags          = AVFMT_SEEK_NOSTREAMS,
+     .read_probe     = avi_probe,
+     .read_header    = avi_read_header,
+     .read_packet    = avi_read_packet,