tools/decode_simple: Check avcodec_send_packet() for errors on flushing

This will not error but the API allows errors so we should check it
Fixes: CID1489999 Unchecked return value

Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
release/7.1
Michael Niedermayer 11 months ago
parent bfc22f364d
commit 6df8bd64ff
No known key found for this signature in database
GPG Key ID: B18E8928B3948D64
  1. 3
      tools/decode_simple.c

@ -94,7 +94,8 @@ int ds_run(DecodeContext *dc)
goto finish; goto finish;
} }
avcodec_send_packet(dc->decoder, NULL); ret = avcodec_send_packet(dc->decoder, NULL);
if (ret >= 0)
ret = decode_read(dc, 1); ret = decode_read(dc, 1);
if (ret < 0) { if (ret < 0) {
fprintf(stderr, "Error flushing: %d\n", ret); fprintf(stderr, "Error flushing: %d\n", ret);

Loading…
Cancel
Save