HomeSort by relevance Sort by last modified time
    Searched refs:psnr (Results 1 - 6 of 6) sorted by null

  /external/libvpx/vp8/encoder/
psnr.c 20 double psnr; local
23 psnr = 10.0 * log10(Peak * Peak * Samples / Mse);
25 psnr = MAX_PSNR; // Limit to prevent / 0
27 if (psnr > MAX_PSNR)
28 psnr = MAX_PSNR;
30 return psnr;
onyx_if.c 19 #include "psnr.h"
    [all...]
  /external/libyuv/
setup_env.bat 7 :: TODO(fbarchard): add files\win32 to for psnr tool
  /external/libvpx/vpx/
vpx_encoder.h 56 #define VPX_CODEC_CAP_PSNR 0x10000 /**< Can issue PSNR packets */
66 #define VPX_CODEC_USE_PSNR 0x10000 /**< Calculate PSNR on each frame */
114 VPX_CODEC_PSNR_PKT, /**< PSNR statistics for this frame */
144 double psnr[4]; /**< PSNR, total/y/u/v */ member in struct:vpx_codec_cx_pkt::__anon9810::vpx_psnr_pkt
145 } psnr; /**< data for PSNR packet */ member in union:vpx_codec_cx_pkt::__anon9810
  /external/libvpx/vp8/
vp8cx.mk 59 VP8_CX_SRCS-yes += encoder/psnr.h
71 VP8_CX_SRCS-yes += encoder/psnr.c
  /external/libvpx/
vpxenc.c 850 double psnr; local
853 psnr = 10.0 * log10(Peak * Peak * Samples / Mse);
855 psnr = 60; // Limit to prevent / 0
857 if (psnr > 60)
858 psnr = 60;
860 return psnr;
894 static const arg_def_t psnrarg = ARG_DEF(NULL, "psnr", 0,
895 "Show PSNR in status line");
1025 {"psnr", VP8_TUNE_PSNR},
    [all...]

Completed in 663 milliseconds