kodi
AEResampleFactory.h
1 /*
2  * Copyright (C) 2010-2018 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "cores/AudioEngine/Interfaces/AEResample.h"
12 
13 class IAEResample;
14 
15 namespace ActiveAE
16 {
17 
21 enum AEResampleFactoryOptions
22 {
23  /* This is a quick resample job (e.g. resample a single noise packet) and may not be worth using GPU acceleration */
24  AERESAMPLEFACTORY_QUICK_RESAMPLE = 0x01
25 };
26 
28 {
29 public:
30  static std::unique_ptr<IAEResample> Create(uint32_t flags = 0U);
31 };
32 
33 }
Definition: Application.h:67
Definition: AEResampleFactory.h:27
#define U(j)
uj for division
Definition: bigint.c:73