Searched refs:best_error (Results 1 - 9 of 9) sorted by relevance
/third_party/astc-encoder/Source/ |
H A D | astcenc_pick_best_endpoint_format.cpp | 402 * @param[out] best_error The best error for each integer count and quant level. 413 float best_error[21][4], 601 best_error[i][3] = ERROR_CALC_DEFAULT; 602 best_error[i][2] = ERROR_CALC_DEFAULT; 603 best_error[i][1] = ERROR_CALC_DEFAULT; 604 best_error[i][0] = ERROR_CALC_DEFAULT; 625 best_error[i][3] = full_hdr_rgba_error; 630 best_error[i][2] = full_hdr_rgb_error; 636 best_error[i][1] = hdr_rgb_scale_error; 641 best_error[ [all...] |
H A D | astcenc_color_quantize.cpp | 1931 float best_error = ERROR_CALC_DEFAULT; 1947 best_error = get_rgba_encoding_error(color0_ldr, color1_ldr, color0_unpack, color1_unpack); 1957 if (error < best_error) 1960 best_error = error; 1976 if (error < best_error) 1979 best_error = error; 1994 if (error < best_error) 2021 best_error = get_rgba_encoding_error(color0_ldr, color1_ldr, color0_unpack, color1_unpack); 2031 if (error < best_error) 2034 best_error [all...] |
H A D | astcenc_compress_symbolic.cpp | 1700 float best_error = best_errorvals_for_pcount[partition_count - 1]; in compress_block() local 1702 if (best_error > (best_error_in_prev * best_error_scale)) in compress_block() 1716 float best_error = best_errorvals_for_pcount[partition_count - 1]; in compress_block() local 1718 if (best_error > (best_error_in_prev * best_error_scale)) in compress_block()
|
/third_party/ffmpeg/libavdevice/tests/ |
H A D | timefilter.c | 38 double best_error = 1000000000; in main() local 71 if (error < best_error) { in main() 72 best_error = error; in main() 80 printf(" [%12f %11f %9f]", bestpar0, bestpar1, best_error); in main()
|
/third_party/ffmpeg/libavcodec/ |
H A D | mpeg12framerate.c | 51 AVRational best_error = { INT_MAX, 1 }; in ff_mpeg12_find_best_frame_rate() local 86 cmp = av_cmp_q(error, best_error); in ff_mpeg12_find_best_frame_rate() 91 best_error = error; in ff_mpeg12_find_best_frame_rate()
|
H A D | ra144enc.c | 336 float error, best_error; in ra144_encode_subblock() local 386 best_error = FLT_MAX; in ra144_encode_subblock() 410 if (error < best_error) { in ra144_encode_subblock() 411 best_error = error; in ra144_encode_subblock()
|
H A D | ituh263enc.c | 113 int best_error= INT_MAX; in ff_h263_encode_picture_header() local 122 if(error < best_error){ in ff_h263_encode_picture_header() 123 best_error= error; in ff_h263_encode_picture_header()
|
/third_party/astc-encoder/Test/ |
H A D | astc_trace_analysis.py | 231 best_error = 1e30 242 if errorval <= best_error: 243 best_error = errorval
|
/third_party/ffmpeg/libavformat/ |
H A D | demux.c | 2268 double best_error = 0.01; in ff_rfps_calculate() local 2286 if (error < best_error && best_error> 0.000000001) { in ff_rfps_calculate() 2287 best_error= error; in ff_rfps_calculate() 2840 double best_error = 0.01; in avformat_find_stream_info() local 2858 if (error < best_error) { in avformat_find_stream_info() 2859 best_error = error; in avformat_find_stream_info() 2866 if (error < best_error) { in avformat_find_stream_info() 2867 best_error = error; in avformat_find_stream_info()
|
Completed in 14 milliseconds