Home
last modified time | relevance | path

Searched refs:file_name (Results 1 – 8 of 8) sorted by relevance

/rockchip-linux_mpp/mpp/hal/rkdec/h264d/
H A Dhal_h264d_vdpu2.c486 char file_name[128]; in set_vlc_regs() local
487 sprintf(file_name, "/sdcard/test/mpp_pocbase_log.txt"); in set_vlc_regs()
488 FILE *fp = fopen(file_name, "ab"); in set_vlc_regs()
598 char file_name[128]; \ in set_ref_regs() local
599 sprintf(file_name, "/sdcard/test/mpp2_RefPicList_log.txt"); \ in set_ref_regs()
600 FILE *fp = fopen(file_name, "ab"); \ in set_ref_regs()
642 char file_name[128]; \ in set_asic_regs() local
643 sprintf(file_name, "/sdcard/test/mpp2_dpb_log.txt"); \ in set_asic_regs()
644 FILE *fp = fopen(file_name, "ab"); \ in set_asic_regs()
964 char file_name[128]; in vdpu2_h264d_start() local
[all …]
/rockchip-linux_mpp/test/
H A DCMakeLists.txt8 set(file_name ${test_name}.${ext}) variable
16 add_executable(${test_name} ${file_name} mpp_event_trigger.c mpp_parse_cfg.c)
/rockchip-linux_mpp/mpp/hal/rkdec/vp9d/
H A Dhal_vp9d_vdpu34x.c563 char file_name[128]; in hal_vp9d_vdpu34x_gen_regs() local
565 sprintf(file_name, "/data/vp9/prob_last_%d.txt", file_cnt); in hal_vp9d_vdpu34x_gen_regs()
566 FILE *fp = fopen(file_name, "wb"); in hal_vp9d_vdpu34x_gen_regs()
871 char file_name[128]; in hal_vp9d_vdpu34x_start() local
872 sprintf(file_name, "/data/vp9_regs/reg_%d.txt", file_cnt); in hal_vp9d_vdpu34x_start()
873 FILE *fp = fopen(file_name, "wb"); in hal_vp9d_vdpu34x_start()
H A Dhal_vp9d_com.c1430 char file_name[128]; in hal_vp9d_prob_default() local
1431 sprintf(file_name, "/data/vp9/prob_default_%d.txt", file_cnt); in hal_vp9d_prob_default()
1432 FILE *vp9_fp = fopen(file_name, "wb"); in hal_vp9d_prob_default()
1904 char file_name[128]; in hal_vp9d_prob_flag_delta() local
1905 sprintf(file_name, "/data/vp9/prob_%d.txt", file_cnt); in hal_vp9d_prob_flag_delta()
1906 FILE *vp9_fp = fopen(file_name, "wb"); in hal_vp9d_prob_flag_delta()
H A Dhal_vp9d_vdpu382.c577 char file_name[128]; in hal_vp9d_vdpu382_gen_regs() local
579 sprintf(file_name, "/data/vp9/prob_last_%d.txt", file_cnt); in hal_vp9d_vdpu382_gen_regs()
580 FILE *fp = fopen(file_name, "wb"); in hal_vp9d_vdpu382_gen_regs()
905 char file_name[128]; in hal_vp9d_vdpu382_start() local
906 sprintf(file_name, "/data/vp9_regs/reg_%d.txt", file_cnt); in hal_vp9d_vdpu382_start()
907 FILE *fp = fopen(file_name, "wb"); in hal_vp9d_vdpu382_start()
/rockchip-linux_mpp/mpp/hal/rkenc/h265e/
H A Dhal_h265e_vepu540c.c1576 char file_name[20] = ""; in hal_h265e_v540c_wait() local
1583 sprintf(&file_name[0], "fbd%d.bin", frm_num); in hal_h265e_v540c_wait()
1588 fp_fbd = fopen(file_name, "wb+"); in hal_h265e_v540c_wait()
1595 sprintf(&file_name[0], "fbh%d.bin", frm_num); in hal_h265e_v540c_wait()
1601 fp_fbh = fopen(file_name, "wb+"); in hal_h265e_v540c_wait()
1610 sprintf(&file_name[0], "dws%d.bin", frm_num); in hal_h265e_v540c_wait()
1616 fp_dws = fopen(file_name, "wb+"); in hal_h265e_v540c_wait()
H A Dhal_h265e_vepu510.c2426 char file_name[20] = ""; in hal_h265e_v510_wait() local
2433 sprintf(&file_name[0], "fbd%d.bin", frm_num); in hal_h265e_v510_wait()
2438 fp_fbd = fopen(file_name, "wb+"); in hal_h265e_v510_wait()
2445 sprintf(&file_name[0], "fbh%d.bin", frm_num); in hal_h265e_v510_wait()
2451 fp_fbh = fopen(file_name, "wb+"); in hal_h265e_v510_wait()
2459 sprintf(&file_name[0], "dws%d.bin", frm_num); in hal_h265e_v510_wait()
2465 fp_dws = fopen(file_name, "wb+"); in hal_h265e_v510_wait()
/rockchip-linux_mpp/utils/
H A Dutils.c1372 static void get_extension(const char *file_name, char *extension) in get_extension() argument
1374 size_t length = strlen(file_name); in get_extension()
1377 const char *p = file_name + length - 1; in get_extension()
1379 while (p >= file_name) { in get_extension()