| /OK3568_Linux_fs/external/mpp/mpp/ |
| H A D | mpp.cpp | 169 mUsrInPort = mpp_task_queue_get_port(mInputTaskQueue, MPP_PORT_INPUT); in init() 172 mMppOutPort = mpp_task_queue_get_port(mOutputTaskQueue, MPP_PORT_INPUT); in init() 209 mUsrInPort = mpp_task_queue_get_port(mInputTaskQueue, MPP_PORT_INPUT); in init() 212 mMppOutPort = mpp_task_queue_get_port(mOutputTaskQueue, MPP_PORT_INPUT); in init() 374 ret = poll(MPP_PORT_INPUT, MPP_POLL_BLOCK); in put_packet() 378 dequeue(MPP_PORT_INPUT, &mEosTask); in put_packet() 399 ret = poll(MPP_PORT_INPUT, timeout); in put_packet() 406 dequeue(MPP_PORT_INPUT, &task_dequeue); in put_packet() 441 ret = enqueue(MPP_PORT_INPUT, task_dequeue); in put_packet() 450 ret = poll(MPP_PORT_INPUT, timeout); in put_packet() [all …]
|
| /OK3568_Linux_fs/external/gstreamer-rockchip/gst/rockchipmpp/ |
| H A D | gstmppjpegdec.c | 356 mppdec->mpi->poll (mppdec->mpp_ctx, MPP_PORT_INPUT, timeout_ms); in gst_mpp_jpeg_dec_send_mpp_packet() 357 mppdec->mpi->dequeue (mppdec->mpp_ctx, MPP_PORT_INPUT, &mtask); in gst_mpp_jpeg_dec_send_mpp_packet() 376 if (mppdec->mpi->enqueue (mppdec->mpp_ctx, MPP_PORT_INPUT, mtask)) in gst_mpp_jpeg_dec_send_mpp_packet() 385 mppdec->mpi->enqueue (mppdec->mpp_ctx, MPP_PORT_INPUT, mtask); in gst_mpp_jpeg_dec_send_mpp_packet() 436 mppdec->mpi->poll (mppdec->mpp_ctx, MPP_PORT_INPUT, MPP_POLL_BLOCK); in gst_mpp_jpeg_dec_shutdown() 437 mppdec->mpi->dequeue (mppdec->mpp_ctx, MPP_PORT_INPUT, &mtask); in gst_mpp_jpeg_dec_shutdown() 449 if (mppdec->mpi->enqueue (mppdec->mpp_ctx, MPP_PORT_INPUT, mtask)) in gst_mpp_jpeg_dec_shutdown() 460 mppdec->mpi->enqueue (mppdec->mpp_ctx, MPP_PORT_INPUT, mtask); in gst_mpp_jpeg_dec_shutdown()
|
| /OK3568_Linux_fs/external/mpp/mpp/base/test/ |
| H A D | mpp_task_test.c | 18 MppPort port = mpp_task_queue_get_port(input, MPP_PORT_INPUT); in task_input() 74 MppPort port_input = mpp_task_queue_get_port(input, MPP_PORT_INPUT); in task_in_and_out() 110 MppPort port_dst = mpp_task_queue_get_port(output, MPP_PORT_INPUT); in task_worker() 143 MppPort port_ii = mpp_task_queue_get_port(input, MPP_PORT_INPUT); in serial_task() 145 MppPort port_oi = mpp_task_queue_get_port(output, MPP_PORT_INPUT); in serial_task()
|
| /OK3568_Linux_fs/external/mpp/test/ |
| H A D | mpi_dec_multi_test.c | 284 ret = mpi->poll(ctx, MPP_PORT_INPUT, MPP_POLL_BLOCK); in multi_dec_advanced() 290 ret = mpi->dequeue(ctx, MPP_PORT_INPUT, &task); /* input queue */ in multi_dec_advanced() 301 ret = mpi->enqueue(ctx, MPP_PORT_INPUT, task); /* input queue */ in multi_dec_advanced() 368 ret = mpi->dequeue(ctx, MPP_PORT_INPUT, &task); /* input queue */ in multi_dec_advanced() 386 ret = mpi->enqueue(ctx, MPP_PORT_INPUT, task); in multi_dec_advanced()
|
| H A D | mpi_dec_test.c | 363 ret = mpi->poll(ctx, MPP_PORT_INPUT, MPP_POLL_BLOCK); in dec_advanced() 369 ret = mpi->dequeue(ctx, MPP_PORT_INPUT, &task); /* input queue */ in dec_advanced() 380 ret = mpi->enqueue(ctx, MPP_PORT_INPUT, task); /* input queue */ in dec_advanced() 453 ret = mpi->dequeue(ctx, MPP_PORT_INPUT, &task); /* input queue */ in dec_advanced() 471 ret = mpi->enqueue(ctx, MPP_PORT_INPUT, task); in dec_advanced()
|
| /OK3568_Linux_fs/external/mpp/mpp/legacy/ |
| H A D | vpu_api_legacy.cpp | 757 ret = mpi->poll(mpp_ctx, MPP_PORT_INPUT, MPP_POLL_BLOCK); in decode() 763 ret = mpi->dequeue(mpp_ctx, MPP_PORT_INPUT, &task); in decode() 772 ret = mpi->enqueue(mpp_ctx, MPP_PORT_INPUT, task); in decode() 781 ret = mpi->poll(mpp_ctx, MPP_PORT_INPUT, MPP_POLL_BLOCK); in decode() 1157 ret = mpi->poll(mpp_ctx, MPP_PORT_INPUT, MPP_POLL_BLOCK); in encode() 1163 ret = mpi->dequeue(mpp_ctx, MPP_PORT_INPUT, &task); in encode() 1176 ret = mpi->enqueue(mpp_ctx, MPP_PORT_INPUT, task); in encode() 1214 ret = mpi->poll(mpp_ctx, MPP_PORT_INPUT, MPP_POLL_BLOCK); in encode() 1221 ret = mpi->dequeue(mpp_ctx, MPP_PORT_INPUT, &task); in encode() 1229 ret = mpi->enqueue(mpp_ctx, MPP_PORT_INPUT, task); in encode()
|
| /OK3568_Linux_fs/external/mpp/inc/ |
| H A D | mpp_task.h | 56 MPP_PORT_INPUT, enumerator
|
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/mpp/include/rockchip/ |
| H A D | mpp_task.h | 56 MPP_PORT_INPUT, enumerator
|
| /OK3568_Linux_fs/external/mpp/mpp/base/ |
| H A D | mpp_task_impl.cpp | 116 if (MPP_PORT_INPUT == type) { in mpp_port_init() 433 if (mpp_port_init(p, MPP_PORT_INPUT, &p->input)) in mpp_task_queue_init() 559 return (type == MPP_PORT_INPUT) ? (impl->input) : (impl->output); in mpp_task_queue_get_port()
|
| /OK3568_Linux_fs/external/mpp/mpp/codec/ |
| H A D | mpp_enc_v2.cpp | 132 p->output = mpp_task_queue_get_port(mpp->mOutputTaskQueue, MPP_PORT_INPUT); in mpp_enc_init_v2()
|