rockchip-linux / mpp

Media Process Platform (MPP) module
596 stars 172 forks source link

转换时mpp_buffer: mpp_buffer_get_ptr invalid NULL input from dump_mpp_frame_to_file #522

Closed Knight1y closed 9 months ago

Knight1y commented 10 months ago

width = mpp_frame_get_width(frame); height = mpp_frame_get_height(frame); h_stride = mpp_frame_get_hor_stride(frame); v_stride = mpp_frame_get_ver_stride(frame); buffer = mpp_frame_get_buffer(frame); base = (RK_U8 *) mpp_buffer_get_ptr(buffer);

前面参数都能正常读到,到了mpp_buffer_get_ptr就开始报错mpp_buffer: mpp_buffer_get_ptr invalid NULL input from dump_mpp_frame_to_file,前面的过程是仿照mpi_dec_test的dump_mpp_frame_to_file转码写的