[mpp]: Remove RKPLATFORM macro

Mpp will only run under Linux environment. Windows support will be
removed.

Change-Id: I52de4bd69f6d7b34507edeb6642668e225fcbd38
Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
This commit is contained in:
Herman Chen
2018-09-04 16:01:52 +08:00
parent 15e357ffd0
commit 67e80ebfe4
39 changed files with 292 additions and 789 deletions

View File

@@ -188,12 +188,9 @@ int mpp_buffer_get_fd_with_caller(MppBuffer buffer, const char *caller)
MppBufferImpl *p = (MppBufferImpl*)buffer;
int fd = p->info.fd;
#ifdef RKPLATFORM
mpp_assert(fd >= 0);
if (fd < 0)
mpp_err("mpp_buffer_get_fd buffer %p fd %d caller %s\n", buffer, fd, caller);
#endif
return fd;
}