2014-04-29 08:14:42 +00:00
|
|
|
#ifndef STRATEGYSELECTOR_H_
|
|
|
|
#define STRATEGYSELECTOR_H_
|
|
|
|
/*****************************************************************************
|
|
|
|
* This file is part of Kvazaar HEVC encoder.
|
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* Copyright (C) 2013-2015 Tampere University of Technology and others (see
|
2014-04-29 08:14:42 +00:00
|
|
|
* COPYING file).
|
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* Kvazaar is free software: you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU Lesser General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2.1 of the License, or (at your
|
|
|
|
* option) any later version.
|
2014-04-29 08:14:42 +00:00
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* Kvazaar 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 Lesser General Public License for
|
|
|
|
* more details.
|
2014-04-29 08:14:42 +00:00
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with Kvazaar. If not, see <http://www.gnu.org/licenses/>.
|
2014-04-29 08:14:42 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
2015-12-17 11:42:57 +00:00
|
|
|
/**
|
|
|
|
* \ingroup Optimization
|
|
|
|
* \file
|
|
|
|
* Dynamic dispatch based on cpuid.
|
|
|
|
*/
|
|
|
|
|
2016-03-30 09:41:37 +00:00
|
|
|
#include "global.h" // IWYU pragma: keep
|
2014-10-14 09:01:56 +00:00
|
|
|
|
2015-09-14 09:43:28 +00:00
|
|
|
#if defined(KVZ_DEBUG) && !defined(DEBUG_STRATEGYSELECTOR)
|
2014-06-16 09:15:19 +00:00
|
|
|
# define DEBUG_STRATEGYSELECTOR
|
|
|
|
#endif
|
|
|
|
|
2014-04-29 08:14:42 +00:00
|
|
|
typedef struct {
|
|
|
|
const char *type; //Type of the function, usually its name
|
|
|
|
const char *strategy_name; //Name of the strategy (e.g. sse2)
|
|
|
|
unsigned int priority; //Priority. 0 = lowest (default strategy)
|
|
|
|
void *fptr; //Pointer to the function
|
2015-03-04 14:17:45 +00:00
|
|
|
} strategy_t;
|
2014-04-29 08:14:42 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
unsigned int count;
|
|
|
|
unsigned int allocated;
|
2015-03-04 14:17:45 +00:00
|
|
|
strategy_t* strategies;
|
2015-03-04 14:23:04 +00:00
|
|
|
} strategy_list_t;
|
2014-04-29 08:14:42 +00:00
|
|
|
|
|
|
|
#define STRATEGY_LIST_ALLOC_SIZE 16
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
const char *strategy_type;
|
|
|
|
void **fptr;
|
2015-03-04 14:24:06 +00:00
|
|
|
} strategy_to_select_t;
|
2014-04-29 08:14:42 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
struct {
|
|
|
|
int mmx;
|
|
|
|
int sse;
|
|
|
|
int sse2;
|
|
|
|
int sse3;
|
|
|
|
int ssse3;
|
|
|
|
int sse41;
|
|
|
|
int sse42;
|
|
|
|
int avx;
|
2014-06-12 15:16:03 +00:00
|
|
|
int avx2;
|
2014-04-29 08:14:42 +00:00
|
|
|
} intel_flags;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
int altivec;
|
|
|
|
} powerpc_flags;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
int neon;
|
|
|
|
} arm_flags;
|
2015-03-04 14:24:59 +00:00
|
|
|
} hardware_flags_t;
|
2014-04-29 08:14:42 +00:00
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
extern hardware_flags_t kvz_g_hardware_flags;
|
2014-04-29 08:14:42 +00:00
|
|
|
|
|
|
|
|
2015-08-26 08:50:27 +00:00
|
|
|
int kvz_strategyselector_init(int32_t cpuid, uint8_t bitdepth);
|
|
|
|
int kvz_strategyselector_register(void *opaque, const char *type, const char *strategy_name, int priority, void *fptr);
|
2014-04-29 08:14:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
//Strategy to include
|
2014-06-13 07:20:02 +00:00
|
|
|
#include "strategies/strategies-nal.h"
|
|
|
|
#include "strategies/strategies-picture.h"
|
2014-07-29 15:10:47 +00:00
|
|
|
#include "strategies/strategies-dct.h"
|
2014-11-20 16:38:54 +00:00
|
|
|
#include "strategies/strategies-ipol.h"
|
2015-09-25 06:10:12 +00:00
|
|
|
#include "strategies/strategies-quant.h"
|
2015-10-08 06:54:15 +00:00
|
|
|
#include "strategies/strategies-intra.h"
|
2016-02-24 14:53:07 +00:00
|
|
|
#include "strategies/strategies-sao.h"
|
2014-04-29 08:14:42 +00:00
|
|
|
|
2015-03-04 14:24:06 +00:00
|
|
|
static const strategy_to_select_t strategies_to_select[] = {
|
2014-06-16 09:13:41 +00:00
|
|
|
STRATEGIES_NAL_EXPORTS
|
|
|
|
STRATEGIES_PICTURE_EXPORTS
|
2014-07-29 15:10:47 +00:00
|
|
|
STRATEGIES_DCT_EXPORTS
|
2014-11-20 16:38:54 +00:00
|
|
|
STRATEGIES_IPOL_EXPORTS
|
2015-09-25 06:10:12 +00:00
|
|
|
STRATEGIES_QUANT_EXPORTS
|
2015-10-08 06:54:15 +00:00
|
|
|
STRATEGIES_INTRA_EXPORTS
|
2016-02-24 14:53:07 +00:00
|
|
|
STRATEGIES_SAO_EXPORTS
|
2014-07-23 12:15:09 +00:00
|
|
|
{ NULL, NULL },
|
2014-04-29 08:14:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //STRATEGYSELECTOR_H_
|