/external/libvpx/libvpx/vpx/src/ |
vpx_psnr.c | 19 const double psnr = 10.0 * log10(samples * peak * peak / sse); local 20 return psnr > MAX_PSNR ? MAX_PSNR : psnr;
|
svc_encodeframe.c | 48 #define COMPONENTS 4 // psnr & sse statistics maintained for total, y, u, v 677 "SVC frame: %d, layer: %d, PSNR(Total/Y/U/V): " 680 cx_pkt->data.psnr.psnr[0], cx_pkt->data.psnr.psnr[1], 681 cx_pkt->data.psnr.psnr[2], cx_pkt->data.psnr.psnr[3]) 794 double psnr[COMPONENTS]; local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/ |
vpx_psnr.c | 19 const double psnr = 10.0 * log10(samples * peak * peak / sse); local 20 return psnr > MAX_PSNR ? MAX_PSNR : psnr;
|
svc_encodeframe.c | 45 #define COMPONENTS 4 // psnr & sse statistics maintained for total, y, u, v 929 "SVC frame: %d, layer: %d, PSNR(Total/Y/U/V): " 932 cx_pkt->data.psnr.psnr[0], cx_pkt->data.psnr.psnr[1], 933 cx_pkt->data.psnr.psnr[2], cx_pkt->data.psnr.psnr[3]) 1056 double psnr[COMPONENTS]; local [all...] |
/external/libyuv/ |
setup_env.bat | 7 :: TODO(fbarchard): add files\win32 to for psnr tool
|
/cts/tests/tests/media/src/android/media/cts/ |
Vp8EncoderTest.java | 36 * calculate PSNR values for various bitrates. 57 // Average PSNR values for reference Google VP8 codec for the above bitrates. 59 // Minimum PSNR values for reference Google VP8 codec for the above bitrates. 61 // Maximum allowed average PSNR difference of encoder comparing to reference Google encoder. 63 // Maximum allowed minimum PSNR difference of encoder comparing to reference Google encoder. 65 // Maximum allowed average PSNR difference of the encoder running in a looper thread with 0 ms 69 // Maximum allowed minimum PSNR difference of the encoder running in a looper thread 124 * Checks the PSNR difference between the encoded and decoded output and reference yuv input 177 // Check PSNR difference. 178 Log.d(TAG, "PSNR Average: Async: " + statisticsAsync.mAveragePSNR 324 final double[] psnr = new double[1]; local [all...] |
/external/webrtc/test/testsupport/metrics/ |
video_metrics.h | 26 // Result from a PSNR/SSIM calculation operation. 44 // Calculates PSNR and SSIM values for the reference and test video files 47 // PSNR values have the unit decibel (dB) where a high value means the test file 49 // For more info about PSNR, see http://en.wikipedia.org/wiki/PSNR 67 // Calculates PSNR values for the reference and test video files (must be in 70 // PSNR values have the unit decibel (dB) where a high value means the test file 74 // For more info about PSNR, see http://en.wikipedia.org/wiki/PSNR
|
/external/libavc/test/ |
encoder.mk | 10 LOCAL_SRC_FILES := encoder/main.c encoder/psnr.c encoder/input.c encoder/output.c encoder/recon.c
|
/external/libvpx/libvpx/test/ |
util.h | 40 double psnr = 100.0; local 42 psnr = 10 * log10(255.0 * 255.0 / mse); 44 return psnr;
|
vp9_lossless_test.cc | 56 if (pkt->data.psnr.psnr[0] < psnr_) 57 psnr_= pkt->data.psnr.psnr[0];
|
error_resilience_test.cc | 55 psnr_ += pkt->data.psnr.psnr[0]; 109 // std::cout << "Mismatch frame psnr: " << mismatch_psnr << "\n"; 229 // Note the Average Mismatch PSNR is the average of the PSNR between 233 std::cout << " Mismatch PSNR: "
|
cpu_speed_test.cc | 62 if (pkt->data.psnr.psnr[0] < min_psnr_) 63 min_psnr_ = pkt->data.psnr.psnr[0];
|
encode_perf_test.cc | 100 if (pkt->data.psnr.psnr[0] < min_psnr_) { 101 min_psnr_= pkt->data.psnr.psnr[0];
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
util.h | 40 double psnr = 100.0; local 42 psnr = 10 * log10(255.0 * 255.0 / mse); 44 return psnr;
|
vp9_lossless_test.cc | 45 if (pkt->data.psnr.psnr[0] < psnr_) 46 psnr_= pkt->data.psnr.psnr[0];
|
error_resilience_test.cc | 55 psnr_ += pkt->data.psnr.psnr[0]; 109 // std::cout << "Mismatch frame psnr: " << mismatch_psnr << "\n"; 229 // Note the Average Mismatch PSNR is the average of the PSNR between 233 std::cout << " Mismatch PSNR: "
|
cq_test.cc | 56 psnr_ += pow(10.0, pkt->data.psnr.psnr[0] / 10.0);
|
/external/libyuv/files/util/ |
compare.cc | 58 double psnr = libyuv::SumSquareErrorToPsnr(sum_square_err, size_min); local 59 printf(", psnr %.2f\n", psnr);
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/ |
PSNRComparer.java | 25 private static final String TAG = "PSNR"; 32 * @param threshold the PSNR necessary to pass the test, if the calculated PSNR is below this 77 Log.d(TAG, "PSNR : " + fraction);
|
/external/libavc/test/encoder/ |
psnr.h | 22 /* File Name : psnr.h */ 24 /* Description : Contains functions for psnr computation */
|
psnr.c | 36 #include "psnr.h" 42 /* Description : Initialize PSNR for the Y, U, V component */ 75 /* Description : Computes the PSNR for the Y, U, V component */ 213 /* Description : Computes the average PSNR for the Y, U, V component */ 237 printf("Avg PSNR Y : %-2.2f\n", (ps_app_ctxt->adbl_psnr[0] / ps_app_ctxt->u4_psnr_cnt)); 238 printf("Avg PSNR U : %-2.2f\n", (ps_app_ctxt->adbl_psnr[1] / ps_app_ctxt->u4_psnr_cnt)); 239 printf("Avg PSNR V : %-2.2f\n", (ps_app_ctxt->adbl_psnr[2] / ps_app_ctxt->u4_psnr_cnt));
|
/external/libvpx/libvpx/vpx/internal/ |
vpx_psnr.h | 20 /*!\brief Converts SSE to PSNR
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/internal/ |
vpx_psnr.h | 20 /*!\brief Converts SSE to PSNR
|
/external/libvpx/libvpx/examples/ |
vp8_multi_resolution_encoder.c | 174 /* Set show_psnr to 1/0 to show/not show PSNR. Choose show_psnr=0 if you 175 don't need to know PSNR, which will skip PSNR calculation and save 197 die("Usage: %s <width> <height> <infile> <outfile(s)> <output psnr?>\n", 358 /* FilterMode 1 or 2 give better psnr than FilterMode 0. */ 393 psnr_sse_total[i] += pkt[i]->data.psnr.sse[0]; 394 psnr_samples_total[i] += pkt[i]->data.psnr.samples[0]; 397 //fprintf(stderr, "%.3lf ", pkt[i]->data.psnr.psnr[j]); 398 psnr_totals[i][j] += pkt[i]->data.psnr.psnr[j] [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
vp8_multi_resolution_encoder.c | 192 /* Set show_psnr to 1/0 to show/not show PSNR. Choose show_psnr=0 if you 193 don't need to know PSNR, which will skip PSNR calculation and save 215 die("Usage: %s <width> <height> <infile> <outfile(s)> <output psnr?>\n", 376 /* FilterMode 1 or 2 give better psnr than FilterMode 0. */ 411 psnr_sse_total[i] += pkt[i]->data.psnr.sse[0]; 412 psnr_samples_total[i] += pkt[i]->data.psnr.samples[0]; 415 //fprintf(stderr, "%.3lf ", pkt[i]->data.psnr.psnr[j]); 416 psnr_totals[i][j] += pkt[i]->data.psnr.psnr[j] [all...] |