| /rockchip-linux_mpp/osal/ |
| H A D | mpp_singleton.c | 36 if (info->id >= MPP_SGLN_MAX_CNT) { in mpp_singleton_add() 37 sgln_dbg("id %d larger than max %d at %s\n", info->id, MPP_SGLN_MAX_CNT, caller); in mpp_singleton_add() 41 if (sgln_mask & ((rk_u64)1 << info->id)) { in mpp_singleton_add() 42 sgln_dbg("info %d has been registered at %s\n", info->id, caller); in mpp_singleton_add() 46 sgln_info[info->id] = *info; in mpp_singleton_add() 47 sgln_mask |= ((rk_u64)1 << info->id); in mpp_singleton_add() 56 sgln_dbg("info %2d %-*s registered at %s\n", info->id, in mpp_singleton_add() 74 sgln_dbg("info %2d %-*s deinit start\n", info->id, in mpp_singleton_deinit() 79 sgln_dbg("info %2d %-*s deinit finish\n", info->id, in mpp_singleton_deinit() 105 sgln_dbg("info %2d %-*s init start\n", info->id, in mpp_singleton_init() [all …]
|
| H A D | mpp_thread.c | 259 void mpp_thread_set_status(MppThread *thread, MppThreadStatus status, MppThreadSignalId id) in mpp_thread_set_status() argument 261 assert(id < THREAD_SIGNAL_BUTT); in mpp_thread_set_status() 262 thread->thd_status[id] = status; in mpp_thread_set_status() 265 MppThreadStatus mpp_thread_get_status(MppThread *thread, MppThreadSignalId id) in mpp_thread_get_status() argument 267 assert(id < THREAD_SIGNAL_BUTT); in mpp_thread_get_status() 268 return thread->thd_status[id]; in mpp_thread_get_status() 271 void mpp_thread_lock(MppThread *thread, MppThreadSignalId id) in mpp_thread_lock() argument 273 assert(id < THREAD_SIGNAL_BUTT); in mpp_thread_lock() 274 mpp_mutex_cond_lock(&thread->mutex_cond[id]); in mpp_thread_lock() 277 void mpp_thread_unlock(MppThread *thread, MppThreadSignalId id) in mpp_thread_unlock() argument [all …]
|
| H A D | mpp_allocator.c | 46 OsAllocatorApiId id) in mpp_allocator_api_wrapper() argument 52 if (!p || !info || id >= ALLOC_API_BUTT) { in mpp_allocator_api_wrapper() 54 allocator, info, id); in mpp_allocator_api_wrapper() 59 switch (id) { in mpp_allocator_api_wrapper()
|
| H A D | mpp_compat.c | 59 MppCompat *mpp_compat_query_by_id(MppCompatId id) in mpp_compat_query_by_id() argument 64 if (compats[i].feature_id == id) in mpp_compat_query_by_id()
|
| /rockchip-linux_mpp/osal/inc/ |
| H A D | mpp_singleton.h | 57 MppSingletonId id; member 67 #define MPP_SINGLETON(id, name, init, deinit) \ argument 69 __attribute__((constructor(SNGL_BASE_ID + id))) \ 72 id, \
|
| H A D | mpp_thread.h | 102 void mpp_thread_set_status(MppThread *thread, MppThreadStatus status, MppThreadSignalId id); 103 MppThreadStatus mpp_thread_get_status(MppThread *thread, MppThreadSignalId id); 104 void mpp_thread_lock(MppThread *thread, MppThreadSignalId id); 105 void mpp_thread_unlock(MppThread *thread, MppThreadSignalId id); 106 void mpp_thread_wait(MppThread *thread, MppThreadSignalId id); 107 void mpp_thread_signal(MppThread *thread, MppThreadSignalId id);
|
| /rockchip-linux_mpp/mpp/base/ |
| H A D | mpp_trie.c | 49 rk_s32 id; member 127 node->id = INVALID_NODE_ID; in trie_get_node() 372 node->idx, node->id, key, keyx); in mpp_trie_walk() 470 trie_dbg_get("get %s ret node %d:%d\n", name, idx, ret ? ret->id : INVALID_NODE_ID); in mpp_trie_get_node() 490 if (node && node->id >= 0 && node->id == pos) in mpp_trie_check() 494 log, name, i, node ? node->id : -1); in mpp_trie_check() 546 i, node->id, prev_idx, prev->next_cnt); in mpp_trie_last_info() 552 i, node->id, node->tag_len, node->tag_val); in mpp_trie_last_info() 556 if (prev->id >= 0) { in mpp_trie_last_info() 558 i, node->id, node->tag_len, node->tag_val); in mpp_trie_last_info() [all …]
|
| H A D | mpp_buffer_impl.c | 34 #define SEARCH_GROUP_BY_ID(srv, id) (get_group_by_id(srv, id)) argument 128 static MppBufferGroupImpl *get_group_by_id(MppBufferService *srv, rk_u32 id) in get_group_by_id() argument 132 hash_for_each_possible(srv->hash_group, impl, hlist, id) { in get_group_by_id() 133 if (impl->group_id == id) in get_group_by_id() 944 rk_u32 id; in mpp_buffer_get_misc_group() local 955 id = service_get_misc(srv, mode, type); in mpp_buffer_get_misc_group() 956 if (!id) { in mpp_buffer_get_misc_group() 969 misc = get_group_by_id(srv, id); in mpp_buffer_get_misc_group() 1031 rk_u32 id = srv->misc[i][j][k]; in mpp_buffer_service_deinit() local 1033 if (id) { in mpp_buffer_service_deinit() [all …]
|
| /rockchip-linux_mpp/kmpp/base/inc/ |
| H A D | kmpp_ioc.h | 17 ENTRY(prefix, u32, rk_u32, id, FLAG_NONE, id) \
|
| /rockchip-linux_mpp/mpp/codec/enc/h265/ |
| H A D | h265e_enctropy.c | 27 #define CLZ32(id, x) id = (unsigned long)__builtin_clz(x) ^ 31 argument 29 #define CLZ32(id, x) _BitScanReverse(&id, x) argument
|
| /rockchip-linux_mpp/osal/allocator/ |
| H A D | ion.h | 87 unsigned int id; member 353 unsigned int id; member
|
| /rockchip-linux_mpp/inc/ |
| H A D | mpp_compat.h | 53 MppCompat *mpp_compat_query_by_id(MppCompatId id);
|
| /rockchip-linux_mpp/mpp/codec/dec/jpeg/ |
| H A D | jpegd_parser.c | 490 RK_U32 id, i, index; in jpegd_decode_sos() local 514 id = value - 1; in jpegd_decode_sos() 515 jpegd_dbg_marker("sos component: %d\n", id); in jpegd_decode_sos() 519 if (id == syntax->component_id[index]) in jpegd_decode_sos() 534 id, syntax->dc_index[i], syntax->ac_index[i]); in jpegd_decode_sos()
|
| /rockchip-linux_mpp/mpp/hal/vpu/vp8e/ |
| H A D | hal_vp8e_base.c | 143 RK_U32 x, y, mb, mask, id; in set_segmentation() local 157 id = 0; in set_segmentation() 160 id = 1; in set_segmentation() 163 id = 2; in set_segmentation() 165 pps->sgm.id_cnt[id]++; in set_segmentation() 167 mask |= id << (28 - 4 * (mb % 8)); in set_segmentation() 184 id = (mask >> (28 - 4 * x)) & 0xF; in set_segmentation() 185 pps->sgm.id_cnt[id]++; in set_segmentation()
|
| /rockchip-linux_mpp/mpp/ |
| H A D | mpp_impl.c | 87 RK_U32 id; member
|
| /rockchip-linux_mpp/doc/ |
| H A D | Rockchip_Developer_Guide_MPP_CN.md | 900 MPP库支持的输入文件的编码格式(t)为MPEG2/4、H.263/4/5、VP8/9和JPEG等,id后的数字为不同编码格式对应的参数值。参数值来源于OMX的定义,值得注意的是,HEVC和AVS格… 998 图像的色彩空间格式分为YUV和RGB两类。MPP支持多种内存排布方式(f),id后的数字为不同内存排布方式对应的参数值,值得注意的是,YUV和RGB格式的参数值有显著区别。
|
| H A D | Rockchip_Developer_Guide_MPP_EN.md | 270 …ions to MPP instances. <br>ctx :MPP instance context. <br>cmd :Mpi command id, representing differ… 826 …. It supports MPEG2/4, H.263/4/5, and VP8/9 decoding. The number after the id is the parameter val…
|
| /rockchip-linux_mpp/tools/ |
| H A D | mpp_doxyfile | 1189 # (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on 1529 # unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
|
| /rockchip-linux_mpp/build/android/ |
| H A D | android.toolchain.cmake | 1380 …RM_THM_CALL relocation' error message. See https://code.google.com/p/android/issues/detail?id=35342
|