HomeSort by relevance Sort by last modified time
    Searched refs:parser_ops (Results 1 - 7 of 7) sorted by null

  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_pm.c 52 viddec_parser_ops_t parser_ops[MFD_STREAM_FORMAT_MAX]; variable
63 viddec_vc1_get_ops(&parser_ops[MFD_STREAM_FORMAT_VC1]);
64 parser_ops[MFD_STREAM_FORMAT_VC1].parse_sc = viddec_parse_sc;
65 parser_ops[MFD_STREAM_FORMAT_VC1].gen_contrib_tags = viddec_pm_generic_generate_contribution_tags;
66 parser_ops[MFD_STREAM_FORMAT_VC1].gen_assoc_tags = viddec_generic_add_association_tags;
68 viddec_mpeg2_get_ops(&parser_ops[MFD_STREAM_FORMAT_MPEG]);
69 parser_ops[MFD_STREAM_FORMAT_MPEG].parse_sc = viddec_parse_sc;
70 parser_ops[MFD_STREAM_FORMAT_MPEG].gen_contrib_tags = viddec_pm_generic_generate_contribution_tags;
71 parser_ops[MFD_STREAM_FORMAT_MPEG].gen_assoc_tags = viddec_mpeg2_add_association_tags;
73 viddec_h264_get_ops(&parser_ops[MFD_STREAM_FORMAT_H264])
    [all...]
vbp_utils.c 43 g_free(pcontext->parser_ops);
44 pcontext->parser_ops = NULL;
99 pcontext->parser_ops = g_try_new(viddec_parser_ops_t, 1);
100 if (NULL == pcontext->parser_ops)
200 pcontext->parser_ops->get_cxt_size(&sizes);
272 viddec_parser_ops_t *ops = pcontext->parser_ops;
432 pcontext->parser_ops->init(
vbp_utils.h 56 viddec_parser_ops_t *parser_ops; member in struct:vbp_context_t
vbp_vc1_parser.c 44 if (NULL == pcontext->parser_ops)
50 pcontext->parser_ops->init = dlsym(pcontext->fd_parser, "viddec_vc1_init");
51 if (NULL == pcontext->parser_ops->init)
57 pcontext->parser_ops->parse_sc = viddec_parse_sc;
59 pcontext->parser_ops->parse_syntax = dlsym(pcontext->fd_parser, "viddec_vc1_parse");
60 if (NULL == pcontext->parser_ops->parse_syntax)
66 pcontext->parser_ops->get_cxt_size = dlsym(pcontext->fd_parser, "viddec_vc1_get_context_size");
67 if (NULL == pcontext->parser_ops->get_cxt_size)
73 pcontext->parser_ops->is_wkld_done = dlsym(pcontext->fd_parser, "viddec_vc1_wkld_done");
74 if (NULL == pcontext->parser_ops->is_wkld_done
    [all...]
viddec_pm_flush.c 8 extern viddec_parser_ops_t parser_ops[MFD_STREAM_FORMAT_MAX];
vbp_h264_parser.c 96 if (NULL == pcontext->parser_ops)
100 pcontext->parser_ops->init = dlsym(pcontext->fd_parser, "viddec_h264_init");
101 if (NULL == pcontext->parser_ops->init)
107 pcontext->parser_ops->parse_sc = viddec_parse_sc;
109 pcontext->parser_ops->parse_syntax = dlsym(pcontext->fd_parser, "viddec_h264_parse");
110 if (NULL == pcontext->parser_ops->parse_syntax)
116 pcontext->parser_ops->get_cxt_size = dlsym(pcontext->fd_parser, "viddec_h264_get_context_size");
117 if (NULL == pcontext->parser_ops->get_cxt_size)
123 pcontext->parser_ops->is_wkld_done = dlsym(pcontext->fd_parser, "viddec_h264_wkld_done");
124 if (NULL == pcontext->parser_ops->is_wkld_done
    [all...]
vbp_mp42_parser.c 50 if (NULL == pcontext->parser_ops)
55 pcontext->parser_ops->init = dlsym(pcontext->fd_parser, "viddec_mp4_init");
56 if (pcontext->parser_ops->init == NULL)
62 pcontext->parser_ops->parse_sc = dlsym(pcontext->fd_parser, "viddec_parse_sc_mp4");
63 if (pcontext->parser_ops->parse_sc == NULL)
69 pcontext->parser_ops->parse_syntax = dlsym(pcontext->fd_parser, "viddec_mp4_parse");
70 if (pcontext->parser_ops->parse_syntax == NULL)
76 pcontext->parser_ops->get_cxt_size = dlsym(pcontext->fd_parser, "viddec_mp4_get_context_size");
77 if (pcontext->parser_ops->get_cxt_size == NULL)
83 pcontext->parser_ops->is_wkld_done = dlsym(pcontext->fd_parser, "viddec_mp4_wkld_done")
    [all...]

Completed in 92 milliseconds