[test]: Use different function name in dec tests

Change-Id: I672abbcc654f084b52d337c61d55218d7f342f7b
Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
This commit is contained in:
Herman Chen
2021-03-05 09:08:48 +08:00
parent b45e1f5352
commit 7dd312a457
3 changed files with 14 additions and 14 deletions

View File

@@ -242,7 +242,7 @@ void *thread_output(void *arg)
return NULL;
}
int mpi_dec_test_decode(MpiDecTestCmd *cmd)
int mt_dec_decode(MpiDecTestCmd *cmd)
{
MPP_RET ret = MPP_OK;
size_t file_size = 0;
@@ -451,7 +451,7 @@ int main(int argc, char **argv)
mpp_env_set_u32("mpi_debug", cmd->debug);
ret = mpi_dec_test_decode(cmd);
ret = mt_dec_decode(cmd);
if (MPP_OK == ret)
mpp_log("test success\n");
else