linphone-desktop/Linphone/model/setting/MediastreamerUtils.hpp
Christophe Deschamps 57534e2c44 Application settings
2024-06-11 10:27:16 +00:00

99 lines
2.4 KiB
C++

/*
* Copyright (c) 2010-2020 Belledonne Communications SARL.
*
* This file is part of linphone-desktop
* (see https://www.linphone.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 3 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef MEDIASTREAMER_UTILS_H_
#define MEDIASTREAMER_UTILS_H_
#include <cmath>
#include <linphone++/linphone.hh>
#include <QtGlobal>
// =============================================================================
struct _MSSndCard;
struct _MSFilter;
struct _MSTicker;
struct _MSFactory;
namespace MediastreamerUtils {
inline float computeVu (float volume) {
constexpr float VuMin = -20.f;
constexpr float VuMax = 4.f;
if (volume < VuMin)
return 0.f;
if (volume > VuMax)
return 1.f;
return (volume - VuMin) / (VuMax - VuMin);
}
inline float dbToLinear(float volume) {
return static_cast<float>(pow(10.0, volume / 10.0));
}
float linearToDb(float volume);
//Simple mediastreamer audio capture graph
//Used to get current microphone volume in audio settings
class SimpleCaptureGraph {
public:
SimpleCaptureGraph(const std::string &captureCardId, const std::string &playbackCardId);
~SimpleCaptureGraph();
void start();
void stop();
float getCaptureVolume();
float getCaptureGain();
float getPlaybackGain();
void setCaptureGain(float volume);
void setPlaybackGain(float volume);
bool isRunning() const {
return running;
}
void init();
void destroy();
bool running = false;
std::string captureCardId;
std::string playbackCardId;
_MSFilter *audioSink = nullptr;
_MSFilter *audioCapture = nullptr;
_MSFilter *captureVolumeFilter = nullptr;
_MSFilter *playbackVolumeFilter = nullptr;
_MSFilter *resamplerFilter = nullptr;
_MSTicker *ticker = nullptr;
_MSSndCard *playbackCard = nullptr;
_MSSndCard *captureCard = nullptr;
_MSFactory *msFactory = nullptr;
};
}
#endif // ifndef MEDIASTREAMER_UTILS_H_