mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-05 17:16:50 +08:00
chore[kmpp]: Remove get packet failed log
Signed-off-by: Yandong Lin <yandong.lin@rock-chips.com> Change-Id: Ie2a85a245f199f4de31d4260f2a0ac3a3d4cadf7
This commit is contained in:
@@ -362,10 +362,8 @@ static MPP_RET get_packet(Kmpp *ctx, MppPacket *packet)
|
|||||||
|
|
||||||
memcpy(&timeout, &ctx->mTimeout, sizeof(timeout));
|
memcpy(&timeout, &ctx->mTimeout, sizeof(timeout));
|
||||||
ret = select(ctx->mClientFd + 1, &read_fds, NULL, NULL, &timeout);
|
ret = select(ctx->mClientFd + 1, &read_fds, NULL, NULL, &timeout);
|
||||||
if (ret <= 0) {
|
if (ret <= 0)
|
||||||
mpp_err("get venc stream error %d\n", ret);
|
|
||||||
return MPP_NOK;
|
return MPP_NOK;
|
||||||
}
|
|
||||||
|
|
||||||
if (FD_ISSET(ctx->mClientFd, &read_fds)) {
|
if (FD_ISSET(ctx->mClientFd, &read_fds)) {
|
||||||
VencPacket *venc_packet = mpp_mem_pool_get(ctx->mVencPacketPool);
|
VencPacket *venc_packet = mpp_mem_pool_get(ctx->mVencPacketPool);
|
||||||
|
Reference in New Issue
Block a user