mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-06 17:46:50 +08:00
[mpi]: fix mpi function print error
git-svn-id: https://10.10.10.66:8443/svn/MediaProcessPlatform/trunk/mpp@1183 6e48237b-75ef-9749-8fc9-41990f28c85a
This commit is contained in:
@@ -239,7 +239,7 @@ static MPP_RET mpi_dequeue(MppCtx ctx, MppPortType type, MppTask *task)
|
|||||||
MPP_RET ret = MPP_NOK;
|
MPP_RET ret = MPP_NOK;
|
||||||
MpiImpl *p = (MpiImpl *)ctx;
|
MpiImpl *p = (MpiImpl *)ctx;
|
||||||
|
|
||||||
mpi_dbg_func("enter ctx %p type task %p\n", ctx, type, task);
|
mpi_dbg_func("enter ctx %p type %d task %p\n", ctx, type, task);
|
||||||
do {
|
do {
|
||||||
ret = check_mpp_ctx(p);
|
ret = check_mpp_ctx(p);
|
||||||
if (ret)
|
if (ret)
|
||||||
@@ -263,7 +263,7 @@ static MPP_RET mpi_enqueue(MppCtx ctx, MppPortType type, MppTask task)
|
|||||||
MPP_RET ret = MPP_NOK;
|
MPP_RET ret = MPP_NOK;
|
||||||
MpiImpl *p = (MpiImpl *)ctx;
|
MpiImpl *p = (MpiImpl *)ctx;
|
||||||
|
|
||||||
mpi_dbg_func("enter ctx %p type task %p\n", ctx, type, task);
|
mpi_dbg_func("enter ctx %p type %d task %p\n", ctx, type, task);
|
||||||
do {
|
do {
|
||||||
ret = check_mpp_ctx(p);
|
ret = check_mpp_ctx(p);
|
||||||
if (ret)
|
if (ret)
|
||||||
|
Reference in New Issue
Block a user