mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
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> (cherry picked from commit e757726e89ff636e0dc6743f635888639a196e36) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
0e44de3b9b
commit
9a4199c71b
@ -1410,7 +1410,7 @@ int avfilter_graph_request_oldest(AVFilterGraph *graph)
|
|||||||
if (r == AVERROR(EAGAIN) &&
|
if (r == AVERROR(EAGAIN) &&
|
||||||
!oldest->frame_wanted_out && !oldesti->frame_blocked_in &&
|
!oldest->frame_wanted_out && !oldesti->frame_blocked_in &&
|
||||||
!oldesti->status_in)
|
!oldesti->status_in)
|
||||||
ff_request_frame(oldest);
|
(void)ff_request_frame(oldest);
|
||||||
else if (r < 0)
|
else if (r < 0)
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user