1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/*****************************************************************************
* Copyright (C) 2013-2020 MulticoreWare, Inc
*
* Authors: Steve Borho <steve@borho.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111, USA.
*
* This program is also available under a commercial proprietary license.
* For more information, contact us at license @ x265.com.
*****************************************************************************/
#ifndef X265_BITCOST_H
#define X265_BITCOST_H
#include "common.h"
#include "threading.h"
#include "mv.h"
namespace X265_NS {
// private x265 namespace
class BitCost
{
public:
BitCost()
: m_cost_mvx(0)
, m_cost_mvy(0)
, m_cost(0)
, m_mvp(0)
, s_bitsizes(NULL)
{
memset(m_fpelMvCosts, 0, sizeof(m_fpelMvCosts));
memset(s_costs, 0, sizeof(s_costs));
memset(s_fpelMvCosts, 0, sizeof(s_fpelMvCosts));
}
~BitCost() { destroy(); }
void setQP(unsigned int qp);
void setMVP(const MV& mvp) { m_mvp = mvp; m_cost_mvx = m_cost - mvp.x; m_cost_mvy = m_cost - mvp.y; }
// return bit cost of motion vector difference, multiplied by lambda
inline uint16_t mvcost(const MV& mv) const { return m_cost_mvx[mv.x] + m_cost_mvy[mv.y]; }
// return bit cost of motion vector difference, without lambda
inline uint32_t bitcost(const MV& mv) const
{
return (uint32_t)(s_bitsizes[mv.x - m_mvp.x] +
s_bitsizes[mv.y - m_mvp.y] + 0.5f);
}
inline uint32_t bitcost(const MV& mv, const MV& mvp) const
{
return (uint32_t)(s_bitsizes[mv.x - mvp.x] +
s_bitsizes[mv.y - mvp.y] + 0.5f);
}
void destroy();
protected:
uint16_t *m_cost_mvx;
uint16_t *m_cost_mvy;
uint16_t *m_cost;
uint16_t *m_fpelMvCosts[4];
MV m_mvp;
BitCost& operator =(const BitCost&);
private:
/* default log2_max_mv_length_horizontal and log2_max_mv_length_horizontal
* are 15, specified in quarter-pel luma sample units. making the maximum
* signaled ful-pel motion distance 4096, max qpel is 32768 */
enum { BC_MAX_MV = (1 << 15) };
enum { BC_MAX_QP = 82 };
float *s_bitsizes;
uint16_t *s_costs[BC_MAX_QP];
uint16_t *s_fpelMvCosts[BC_MAX_QP][4];
Lock s_costCalcLock;
void CalculateLogs();
};
}
#endif // ifndef X265_BITCOST_H
|