diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-05-06 18:03:59 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-05-21 12:02:52 +0200 |
commit | 2a5ee83442fd93f90937f424bfd1219499878efc (patch) | |
tree | 3e755ab2374ac12615a30d6d24356daac40892e3 | |
parent | 328ba54efa3b0bc3f6841225f2adc355c4954658 (diff) | |
download | ffmpeg-2a5ee83442fd93f90937f424bfd1219499878efc.tar.gz |
avcodec/atrac3: Use av_unreachable() instead of av_assert1(0)
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/atrac3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c index faa3daa9e6..fe156fa482 100644 --- a/libavcodec/atrac3.c +++ b/libavcodec/atrac3.c @@ -526,7 +526,7 @@ static void reverse_matrixing(float *su1, float *su2, int *prev_code, } break; default: - av_assert1(0); + av_unreachable("curr_code/matrix_coeff_index_* values are stored in two bits"); } } } |