示例#1
0
文件: ta.c 项目: JamesLinus/dcadec
static struct ta_header *get_header(void *ptr)
{
    return ptr ? PTR_TO_HEADER(ptr) : NULL;
}
示例#2
0
文件: ta.c 项目: Akemi/mpv
static struct ta_header *get_header(void *ptr)
{
    struct ta_header *h = ptr ? PTR_TO_HEADER(ptr) : NULL;
    ta_dbg_check_header(h);
    return h;
}