aboutsummaryrefslogtreecommitdiff
path: root/src/opus_projection_decoder.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/opus_projection_decoder.c')
-rw-r--r--src/opus_projection_decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opus_projection_decoder.c b/src/opus_projection_decoder.c
index 4c910d57..d39cb834 100644
--- a/src/opus_projection_decoder.c
+++ b/src/opus_projection_decoder.c
@@ -134,7 +134,7 @@ int opus_projection_decoder_init(OpusProjectionDecoder *st, opus_int32 Fs,
/* Verify supplied matrix size. */
nb_input_streams = streams + coupled_streams;
expected_matrix_size = nb_input_streams * channels * sizeof(opus_int16);
- if (align(expected_matrix_size) != align(demixing_matrix_size))
+ if (expected_matrix_size != demixing_matrix_size)
{
RESTORE_STACK;
return OPUS_BAD_ARG;