avcodec/tests/bitstream_template: Assert bits_init8() return

Helps: CID1518967 Unchecked return value
Helps: CID1518968 Unchecked return value

Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2024-05-23 02:37:04 +02:00
parent b6fa2ed77e
commit e7775973f0
No known key found for this signature in database
GPG Key ID: B18E8928B3948D64

View File

@ -61,6 +61,7 @@ int main(int argc, char **argv)
uint64_t val, val1;
int32_t sval, sval1;
unsigned count;
int ret;
/* generate random input, using a given or random seed */
if (argc > 1)
@ -74,7 +75,8 @@ int main(int argc, char **argv)
for (unsigned i = 0; i < SIZE; i++)
buf[i] = av_lfg_get(&lfg);
bits_init8 (&bc, buf, SIZE);
ret = bits_init8 (&bc, buf, SIZE);
av_assert0(ret >= 0);
init_put_bits(&pb, dst, SIZE);
/* use a random sequence of bitreading operations to transfer data