• John Koleszar's avatar
    Add psnr/ssim tuning option · b0da9b39
    John Koleszar authored
    Add a new encoder control, VP8E_SET_TUNING, to allow the application
    to inform the encoder that the material will benefit from certain
    tuning. Expose this control as the --tune option to vpxenc. The args
    helper is expanded to support enumerated arguments by name or value.
    
    Two tunings are provided by this patch, PSNR (default) and SSIM.
    Activity masking is made dependent on setting --tune=ssim, as the
    current implementation hurts speed (10%) and PSNR (2.7% avg,
    10% peak) too much for it to be a default yet.
    
    Change-Id: I110d969381c4805347ff5a0ffaf1a14ca1965257
    b0da9b39
psnr.h 533 bytes
/*
 *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */
#ifndef __INC_PSNR_H
#define __INC_PSNR_H
extern double vp8_mse2psnr(double Samples, double Peak, double Mse);
#endif