aboutsummaryrefslogtreecommitdiffstats
path: root/libavfilter
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2024-04-22 02:53:51 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2024-05-01 02:57:13 +0200
commite757726e89ff636e0dc6743f635888639a196e36 (patch)
tree546e75fc15ad2d67b03b585c9ef4f3b6b4e137c9 /libavfilter
parent99e43a6dfecbc170192d3229a725cc963c6e7c15 (diff)
downloadffmpeg-e757726e89ff636e0dc6743f635888639a196e36.tar.gz
avfilter/avfiltergraph: return value of ff_request_frame() is unused
Fixes: CID1397741 Unchecked return value Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/avfiltergraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index 0c569eb218..bd3bed9a35 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -1410,7 +1410,7 @@ int avfilter_graph_request_oldest(AVFilterGraph *graph)
if (r == AVERROR(EAGAIN) &&
!oldest->frame_wanted_out && !oldesti->frame_blocked_in &&
!oldesti->status_in)
- ff_request_frame(oldest);
+ (void)ff_request_frame(oldest);
else if (r < 0)
return r;
}