diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2023-10-01 19:28:55 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2023-10-16 01:16:19 +0200 |
commit | 5ddab49d48343385eadb3a435a5491c476b66ecc (patch) | |
tree | ff23af060d1a084416624182d87b0017e649fbe6 | |
parent | f7e5537dc1ff2f45a6e4c98091f15e60c3647cfc (diff) | |
download | ffmpeg-5ddab49d48343385eadb3a435a5491c476b66ecc.tar.gz |
avcodec/h2645_parse: Avoid EAGAIN
EAGAIN causes an assertion failure when it is returned from the decoder
Fixes: Assertion consumed != (-(11)) failed at libavcodec/decode.c:462
Fixes: assertion_IOT_instruction_decode_c_462/poc
Found-by: Hardik Shah of Vehere (Dawn Treaders team)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/h2645_parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h2645_parse.h b/libavcodec/h2645_parse.h index 787ce971ee..128dea09ef 100644 --- a/libavcodec/h2645_parse.h +++ b/libavcodec/h2645_parse.h @@ -123,7 +123,7 @@ static inline int get_nalsize(int nal_length_size, const uint8_t *buf, if (*buf_index >= buf_size - nal_length_size) { // the end of the buffer is reached, refill it - return AVERROR(EAGAIN); + return AVERROR_INVALIDDATA; } for (i = 0; i < nal_length_size; i++) |