[FFmpeg-cvslog] af_resample: switch to child_class_iterate()

Anton Khirnov git at videolan.org
Wed Jun 10 13:53:07 EEST 2020


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed May 27 15:34:07 2020 +0200| [342230a53758f843ae692559c34d1b3eb35d22a4] | committer: Anton Khirnov

af_resample: switch to child_class_iterate()

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=342230a53758f843ae692559c34d1b3eb35d22a4
---

 libavfilter/af_resample.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/libavfilter/af_resample.c b/libavfilter/af_resample.c
index e3c6a20696..785cd0c7f4 100644
--- a/libavfilter/af_resample.c
+++ b/libavfilter/af_resample.c
@@ -306,10 +306,19 @@ fail:
     return ret;
 }
 
+#if FF_API_CHILD_CLASS_NEXT
 static const AVClass *resample_child_class_next(const AVClass *prev)
 {
     return prev ? NULL : avresample_get_class();
 }
+#endif
+
+static const AVClass *resample_child_class_iterate(void **iter)
+{
+    const AVClass *c = *iter ? NULL : avresample_get_class();
+    *iter = (void*)(uintptr_t)c;
+    return c;
+}
 
 static void *resample_child_next(void *obj, void *prev)
 {
@@ -321,7 +330,10 @@ static const AVClass resample_class = {
     .class_name       = "resample",
     .item_name        = av_default_item_name,
     .version          = LIBAVUTIL_VERSION_INT,
+#if FF_API_CHILD_CLASS_NEXT
     .child_class_next = resample_child_class_next,
+#endif
+    .child_class_iterate = resample_child_class_iterate,
     .child_next       = resample_child_next,
 };
 



More information about the ffmpeg-cvslog mailing list