Home
last modified time | relevance | path

Searched refs:extConfig (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/external/rockit/mpi/example/mod/sys/
H A Dtest_sys_avio.cpp74 MB_EXT_CONFIG_S extConfig = {0}; in test_video_stream() local
75 extConfig.pu8VirAddr = data; in test_video_stream()
76 extConfig.u64Size = 250; in test_video_stream()
77 RK_MPI_SYS_CreateMB(&(vstream.pMbBlk), &extConfig); in test_video_stream()
92 MB_EXT_CONFIG_S extConfig = {0}; in test_video_stream() local
93 extConfig.pu8VirAddr = reinterpret_cast<RK_U8 *>(malloc(250)); in test_video_stream()
94 extConfig.u64Size = 250; in test_video_stream()
95 extConfig.pFreeCB = test_video_stream_buffer_free; in test_video_stream()
96 extConfig.pOpaque = extConfig.pu8VirAddr; in test_video_stream()
97 RK_MPI_SYS_CreateMB(&(vstream.pMbBlk), &extConfig); in test_video_stream()
/OK3568_Linux_fs/external/rockit/mpi/example/mod/
H A Dtest_mpi_adec.cpp166 MB_EXT_CONFIG_S extConfig = {0}; in send_stream_thread() local
167 extConfig.pFreeCB = adec_data_free; in send_stream_thread()
168 extConfig.pOpaque = srcData; in send_stream_thread()
169 extConfig.pu8VirAddr = srcData; in send_stream_thread()
170 extConfig.u64Size = srcSize; in send_stream_thread()
171 RK_MPI_SYS_CreateMB(&(stAudioStream.pMbBlk), &extConfig); in send_stream_thread()
H A Dtest_mpi_aenc.cpp184 MB_EXT_CONFIG_S extConfig = {0}; in send_frame_thread() local
185 extConfig.pFreeCB = aenc_data_free; in send_frame_thread()
186 extConfig.pOpaque = srcData; in send_frame_thread()
187 extConfig.pu8VirAddr = srcData; in send_frame_thread()
188 extConfig.u64Size = srcSize; in send_frame_thread()
189 RK_MPI_SYS_CreateMB(&(stAudioFrm.pMbBlk), &extConfig); in send_frame_thread()
H A Dtest_mpi_ao.cpp262 MB_EXT_CONFIG_S extConfig; in sendDataThread() local
263 memset(&extConfig, 0, sizeof(extConfig)); in sendDataThread()
264 extConfig.pOpaque = srcData; in sendDataThread()
265 extConfig.pu8VirAddr = srcData; in sendDataThread()
266 extConfig.u64Size = size; in sendDataThread()
267 RK_MPI_SYS_CreateMB(&(frame.pMbBlk), &extConfig); in sendDataThread()