summaryrefslogtreecommitdiffstats
path: root/src/encoder
diff options
context:
space:
mode:
authorluzpaz <kunda@scribus.net>2017-12-31 08:20:30 -0500
committerluz paz <luzpaz@users.noreply.github.com>2018-04-06 08:59:46 -0400
commitc9791f01cab4682b124e0e0255efc1d44fad38ba (patch)
tree5bd82e76e94594b4b29780f003162ee7c8c824e5 /src/encoder
parent4ab51192dbff802742fda32642b8e996aa41d9c5 (diff)
Typo fixes
+ User facing typos + trivial source comment typos + superflous double whitespace issues + found redundant comment typo Found using `codespell -q 3 --skip="./build/wix/Localization,./res/translations,./lib" -I ../mixxx-whitelist.txt` where the contents of the whitelist were: ``` iff freee substract ```
Diffstat (limited to 'src/encoder')
-rw-r--r--src/encoder/encoderffmpegcore.h2
-rw-r--r--src/encoder/encodermp3.cpp4
-rw-r--r--src/encoder/encodervorbis.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/encoder/encoderffmpegcore.h b/src/encoder/encoderffmpegcore.h
index a9ed018b16..908b5d3ff1 100644
--- a/src/encoder/encoderffmpegcore.h
+++ b/src/encoder/encoderffmpegcore.h
@@ -25,7 +25,7 @@ extern "C" {
#include <libavutil/avutil.h>
#endif
-// Compability
+// Compatibility
#include <libavutil/mathematics.h>
#include <libavutil/opt.h>
}
diff --git a/src/encoder/encodermp3.cpp b/src/encoder/encodermp3.cpp
index 01fa91e686..7503a48635 100644
--- a/src/encoder/encodermp3.cpp
+++ b/src/encoder/encodermp3.cpp
@@ -24,7 +24,7 @@
#include "errordialoghandler.h"
// Automatic thresholds for switching the encoder to mono
-// They have been choosen by testing and to keep the same number
+// They have been chosen by testing and to keep the same number
// of values for the slider.
// The threshold of bitrate (CBR/ABR) at which the encoder
// with switch to mono encoding
@@ -393,7 +393,7 @@ int EncoderMp3::initEncoder(int samplerate, QString errorMessage) {
}
unsigned long samplerate_in = samplerate;
- // samplerate_out 0 means "let LAME pick the appropiate one"
+ // samplerate_out 0 means "let LAME pick the appropriate one"
unsigned long samplerate_out = (samplerate_in > 48000 ? 48000 : 0);
m_lameFlags = lame_init();
diff --git a/src/encoder/encodervorbis.cpp b/src/encoder/encodervorbis.cpp
index a386232473..fa7d053bca 100644
--- a/src/encoder/encodervorbis.cpp
+++ b/src/encoder/encodervorbis.cpp
@@ -27,7 +27,7 @@ http://svn.xiph.org/trunk/vorbis/examples/encoder_example.c
#include "errordialoghandler.h"
// Automatic thresholds for switching the encoder to mono
-// They have been choosen by testing and to keep the same number
+// They have been chosen by testing and to keep the same number
// of values for the slider.
// The threshold of bitrate at which the encoder
// with switch to mono encoding