Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1eb5c5d1 authored by Antoine SOULIER's avatar Antoine SOULIER
Browse files

LE Audio ASRC test fixup

Bug: 316212273
Test: atest asrc_resampler_test
Flag: EXEMPT Change detail in test implementation
Change-Id: I1a3c9e034674cc99ce57fe64265f4425f62b27c8
parent 8e29cde3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ extern "C" void resample_i16(int channels, int bitdepth, double ratio,
                         &out_count);

  if (out_count < out_length)
    fprintf(stderr, "wrong output size: %zd:%zd %zd:%zd\n", in_length, in_count,
    fprintf(stderr, "wrong output size: %zu:%zu %zu:%zu\n", in_length, in_count,
            out_length, out_count);

  return;
@@ -71,7 +71,7 @@ extern "C" void resample_i32(int channels, int bitdepth, double ratio,
                         &out_count);

  if (out_count < out_length)
    fprintf(stderr, "wrong output size: %zd:%zd %zd:%zd\n", in_length, in_count,
    fprintf(stderr, "wrong output size: %zu:%zu %zu:%zu\n", in_length, in_count,
            out_length, out_count);

  return;