summaryrefslogtreecommitdiffstats
path: root/src/soundsourceoggvorbis.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/soundsourceoggvorbis.cpp')
-rw-r--r--src/soundsourceoggvorbis.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soundsourceoggvorbis.cpp b/src/soundsourceoggvorbis.cpp
index e7c8b068d4..22d2d4b2fb 100644
--- a/src/soundsourceoggvorbis.cpp
+++ b/src/soundsourceoggvorbis.cpp
@@ -59,7 +59,7 @@ SoundSourceOggVorbis::SoundSourceOggVorbis(QString qFilename)
SoundSourceOggVorbis::~SoundSourceOggVorbis()
{
- if (filelength > 0){
+ if (filelength > 0) {
ov_clear(&vf);
}
}
@@ -93,7 +93,7 @@ Result SoundSourceOggVorbis::open() {
channels = vi->channels;
setSampleRate(vi->rate);
- if(channels > 2){
+ if (channels > 2) {
qDebug() << "oggvorbis: No support for more than 2 channels!";
ov_clear(&vf);
filelength = 0;