[FFmpeg-cvslog] avcodec/huffyuvdec: Use assert to check for things that can't fail
Andreas Rheinhardt
git at videolan.org
Sun Apr 7 23:18:09 EEST 2024
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Thu Apr 4 21:16:47 2024 +0200| [f3c8d0399acdf5dc0f0990bba3d7f0fb7c6e407c] | committer: Andreas Rheinhardt
avcodec/huffyuvdec: Use assert to check for things that can't fail
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f3c8d0399acdf5dc0f0990bba3d7f0fb7c6e407c
---
libavcodec/huffyuvdec.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavcodec/huffyuvdec.c b/libavcodec/huffyuvdec.c
index e35d55c8ad..a8ccb724f5 100644
--- a/libavcodec/huffyuvdec.c
+++ b/libavcodec/huffyuvdec.c
@@ -290,13 +290,13 @@ static int read_old_huffman_tables(HYuvDecContext *s)
bytestream2_init(&gb, classic_shift_luma,
sizeof(classic_shift_luma));
- if ((ret = read_len_table(s->len[0], &gb, 256)) < 0)
- return ret;
+ ret = read_len_table(s->len[0], &gb, 256);
+ av_assert1(ret >= 0);
bytestream2_init(&gb, classic_shift_chroma,
sizeof(classic_shift_chroma));
- if ((ret = read_len_table(s->len[1], &gb, 256)) < 0)
- return ret;
+ ret = read_len_table(s->len[1], &gb, 256);
+ av_assert1(ret >= 0);
for (i = 0; i < 256; i++)
s->bits[0][i] = classic_add_luma[i];
More information about the ffmpeg-cvslog
mailing list