mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 20:22:27 +02:00
Delete trailing whitespace.
This commit is contained in:
parent
26d507c39a
commit
cb78daa0b1
1 changed files with 2 additions and 2 deletions
|
@ -147,7 +147,7 @@ int AthenaOpusEncoder::getVBRConstraint() const {
|
|||
void AthenaOpusEncoder::setVBRConstraint(int vbr_const) {
|
||||
assert(_encoder);
|
||||
int errorCode = opus_encoder_ctl(_encoder, OPUS_SET_VBR_CONSTRAINT(vbr_const));
|
||||
|
||||
|
||||
if (errorCode != OPUS_OK) {
|
||||
qCWarning(encoder) << "Error when setting VBR constraint to " << vbr_const << ": " << errorToString(errorCode);
|
||||
}
|
||||
|
@ -163,7 +163,7 @@ int AthenaOpusEncoder::getMaxBandwidth() const {
|
|||
void AthenaOpusEncoder::setMaxBandwidth(int maxBandwidth) {
|
||||
assert(_encoder);
|
||||
int errorCode = opus_encoder_ctl(_encoder, OPUS_SET_MAX_BANDWIDTH(maxBandwidth));
|
||||
|
||||
|
||||
if (errorCode != OPUS_OK) {
|
||||
qCWarning(encoder) << "Error when setting max bandwidth to " << maxBandwidth << ": " << errorToString(errorCode);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue