diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-26 21:24:15 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-30 14:33:08 +0200 |
commit | 36e805e9df012c20641fac5914a058f9c5ae15fd (patch) | |
tree | 1fca2f36fa564b1aa87751657dcc6af8cab86e4b | |
parent | 5fe447bbb4a1dfebb6f19339764aeab0315ff17f (diff) | |
download | ffmpeg-36e805e9df012c20641fac5914a058f9c5ae15fd.tar.gz |
avutil/tests/pixelutils: Use av_assert0 instead for test tools
These are test tools, so they should be picky.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavutil/tests/pixelutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/tests/pixelutils.c b/libavutil/tests/pixelutils.c index 41663d3eda..e1b7dd19b2 100644 --- a/libavutil/tests/pixelutils.c +++ b/libavutil/tests/pixelutils.c @@ -47,7 +47,7 @@ static void check_pixfmt_descriptors(void) av_assert0(d->log2_chroma_w <= 3); av_assert0(d->log2_chroma_h <= 3); av_assert0(d->nb_components <= 4); - av_assert2(av_get_pix_fmt(d->name) == av_pix_fmt_desc_get_id(d)); + av_assert0(av_get_pix_fmt(d->name) == av_pix_fmt_desc_get_id(d)); /* The following two checks as well as the one after the loop * would need to be changed if we changed the way the descriptors |