1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/atrac3: Use av_unreachable() instead of av_assert1(0)

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-05-06 18:03:59 +02:00
parent 328ba54efa
commit 2a5ee83442

View File

@ -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");
}
}
}