fftools/ffmpeg_sched: Remove dead assignments in sch_dec_send()

Fixes: CID1592383 Unused value

Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2024-04-28 01:02:27 +02:00
parent 68f6063e04
commit ed364444f1
No known key found for this signature in database
GPG Key ID: B18E8928B3948D64

View File

@ -2174,7 +2174,7 @@ finish:
int sch_dec_send(Scheduler *sch, unsigned dec_idx, AVFrame *frame)
{
SchDec *dec;
int ret = 0;
int ret;
unsigned nb_done = 0;
av_assert0(dec_idx < sch->nb_dec);
@ -2201,7 +2201,6 @@ int sch_dec_send(Scheduler *sch, unsigned dec_idx, AVFrame *frame)
av_frame_unref(to_send);
if (ret == AVERROR_EOF) {
nb_done++;
ret = 0;
continue;
}
return ret;