This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TDA4AL-Q1: vxSetGraphScheduleConfig 段错误

Part Number: TDA4AL-Q1

vision_app架构下

create一个单个node的graph,并将node的输入设置为graph的输入,node输入的类型为vx_object_array

vx_graph_parameter_queue_params_t m_graph_parameters_queue_params_list[1]

m_graph_parameter_index = 0;

add_graph_parameter_by_node_index(m_vx_graph, m_ptr_monorangenode->m_vx_node, 1);
m_graph_parameters_queue_params_list[m_graph_parameter_index].graph_parameter_index = m_graph_parameter_index;
  m_graph_parameters_queue_params_list[m_graph_parameter_index].refs_list_size = AVP_BUFFER_Q_DEPTH;
    m_graph_parameters_queue_params_list[m_graph_parameter_index].refs_list = (vx_reference*)m_ptr_monorangenode->m_vec_inputs[1];
    m_graph_parameter_index++;

status = vxSetGraphScheduleConfig(m_vx_graph,
                                VX_GRAPH_SCHEDULE_MODE_QUEUE_AUTO,
                                m_graph_parameter_index,
                                m_graph_parameters_queue_params_list);

执行vxSetGraphScheduleConfig函数时报段错误