Browse Source

fix compiler warning introduced in 677fe29d

Change-Id: I523bdf389cf8107f6f5c279c26a643c95ae54c49
changes/96/21196/3
Richard Fuchs 8 years ago
parent
commit
1e96c9e522
1 changed files with 6 additions and 8 deletions
  1. +6
    -8
      t/amr-decode-test.c

+ 6
- 8
t/amr-decode-test.c View File

@ -67,14 +67,12 @@ static void do_test_amr_wb(const char *file, int line,
do_test_amr_xx(file, line, fmtp_s, data_s, data_len, expect_s, expect_len,
"AMR-WB", 16000);
}
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57,64,0)
static void do_test_amr_nb(const char *file, int line,
char *fmtp_s, char *data_s, int data_len, char *expect_s, int expect_len)
{
do_test_amr_xx(file, line, fmtp_s, data_s, data_len, expect_s, expect_len,
"AMR", 8000);
}
#endif
//static void do_test_amr_nb(const char *file, int line,
// char *fmtp_s, char *data_s, int data_len, char *expect_s, int expect_len)
//{
// do_test_amr_xx(file, line, fmtp_s, data_s, data_len, expect_s, expect_len,
// "AMR", 8000);
//}
#define do_test_wb(in, out, fmt) \
do_test_amr_wb(__FILE__, __LINE__, fmt, in, sizeof(in)-1, out, sizeof(out)-1)


Loading…
Cancel
Save