[mpi]: rename mpi_flush to mpi_reset

[h264d]: fix warning on strupr

git-svn-id: https://10.10.10.66:8443/svn/MediaProcessPlatform/trunk/mpp@535 6e48237b-75ef-9749-8fc9-41990f28c85a
This commit is contained in:
ChenHengming
2016-01-20 07:36:48 +00:00
parent db7e4ff619
commit cb0d12ec49
5 changed files with 42 additions and 18 deletions

View File

@@ -126,7 +126,7 @@ static MPP_RET mpi_encode_get_packet(MppCtx ctx, MppPacket *packet)
return ret;
}
static MPP_RET mpi_flush(MppCtx ctx)
static MPP_RET mpi_reset(MppCtx ctx)
{
MpiImpl *p = (MpiImpl *)ctx;
MPP_RET ret = MPP_OK;
@@ -150,15 +150,15 @@ static MPP_RET mpi_control(MppCtx ctx, MpiCmd cmd, MppParam param)
static MppApi mpp_api = {
sizeof(mpp_api),
0,
mpi_config,
mpi_decode,
mpi_encode,
mpi_decode_put_packet,
mpi_decode_get_frame,
mpi_encode_put_frame,
mpi_encode_get_packet,
mpi_flush,
mpi_reset,
mpi_control,
mpi_config,
{0},
};
@@ -202,7 +202,6 @@ MPP_RET mpp_create(MppCtx *ctx, MppApi **mpi)
return MPP_OK;
}
MPP_RET mpp_init(MppCtx ctx, MppCtxType type, MppCodingType coding)
{
MpiImpl *p = (MpiImpl*)ctx;