[FFmpeg-cvslog] fftools/ffmpeg_filter: replace remaining report_and_exit() with error codes

Anton Khirnov git at videolan.org
Thu Jul 20 21:57:03 EEST 2023


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Jul 13 15:11:07 2023 +0200| [13ebc9a0a9b6b67e7bd896a729d9651a24373135] | committer: Anton Khirnov

fftools/ffmpeg_filter: replace remaining report_and_exit() with error codes

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

 fftools/ffmpeg_filter.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c
index b7fb66c047..538cf6cd43 100644
--- a/fftools/ffmpeg_filter.c
+++ b/fftools/ffmpeg_filter.c
@@ -723,14 +723,14 @@ static InputFilter *ifilter_alloc(FilterGraph *fg)
 
     ifp->frame = av_frame_alloc();
     if (!ifp->frame)
-        report_and_exit(AVERROR(ENOMEM));
+        return NULL;
 
     ifp->format          = -1;
     ifp->fallback.format = -1;
 
     ifp->frame_queue = av_fifo_alloc2(8, sizeof(AVFrame*), AV_FIFO_FLAG_AUTO_GROW);
     if (!ifp->frame_queue)
-        report_and_exit(AVERROR(ENOMEM));
+        return NULL;
 
     return ifilter;
 }
@@ -1783,7 +1783,7 @@ int reap_filters(FilterGraph *fg, int flush)
             fd = frame_data(filtered_frame);
             if (!fd) {
                 av_frame_unref(filtered_frame);
-                report_and_exit(AVERROR(ENOMEM));
+                return AVERROR(ENOMEM);
             }
 
             // only use bits_per_raw_sample passed through from the decoder



More information about the ffmpeg-cvslog mailing list