summaryrefslogtreecommitdiffstats
path: root/src/encoder
diff options
context:
space:
mode:
authorNico Schlömer <nico.schloemer@gmail.com>2015-03-25 14:59:40 +0100
committerNico Schlömer <nico.schloemer@gmail.com>2015-03-25 14:59:40 +0100
commitcf60291b5ce10bfb91b7e1e266cc858c8b7d65aa (patch)
tree374ceb1fe41cf8fa6a9bf9bf1431b132aad4bf19 /src/encoder
parente7ef2efbb6a17e8c825bc16ffbf8a0d7013b73c1 (diff)
indentation fix
Diffstat (limited to 'src/encoder')
-rw-r--r--src/encoder/encodervorbis.cpp56
1 files changed, 28 insertions, 28 deletions
diff --git a/src/encoder/encodervorbis.cpp b/src/encoder/encodervorbis.cpp
index ec3e9dd7dc..4e801a072c 100644
--- a/src/encoder/encodervorbis.cpp
+++ b/src/encoder/encodervorbis.cpp
@@ -42,34 +42,34 @@ EncoderVorbis::EncoderVorbis(EncoderCallback* pCallback)
m_metaDataTitle(NULL),
m_metaDataArtist(NULL),
m_metaDataAlbum(NULL){
- m_vdsp.pcm_returned = 0;
- m_vdsp.preextrapolate = 0;
- m_vdsp.eofflag = 0;
- m_vdsp.lW = 0;
- m_vdsp.W = 0;
- m_vdsp.nW = 0;
- m_vdsp.centerW = 0;
- m_vdsp.granulepos = 0;
- m_vdsp.sequence = 0;
- m_vdsp.glue_bits = 0;
- m_vdsp.time_bits = 0;
- m_vdsp.floor_bits = 0;
- m_vdsp.res_bits = 0;
- m_vdsp.backend_state = NULL;
-
- m_vinfo.version = 0;
- m_vinfo.channels = 0;
- m_vinfo.rate = 0;
- m_vinfo.bitrate_upper = 0;
- m_vinfo.bitrate_nominal = 0;
- m_vinfo.bitrate_lower = 0;
- m_vinfo.bitrate_window = 0;
- m_vinfo.codec_setup = NULL;
-
- m_vcomment.user_comments = NULL;
- m_vcomment.comment_lengths = NULL;
- m_vcomment.comments = 0;
- m_vcomment.vendor = NULL;
+ m_vdsp.pcm_returned = 0;
+ m_vdsp.preextrapolate = 0;
+ m_vdsp.eofflag = 0;
+ m_vdsp.lW = 0;
+ m_vdsp.W = 0;
+ m_vdsp.nW = 0;
+ m_vdsp.centerW = 0;
+ m_vdsp.granulepos = 0;
+ m_vdsp.sequence = 0;
+ m_vdsp.glue_bits = 0;
+ m_vdsp.time_bits = 0;
+ m_vdsp.floor_bits = 0;
+ m_vdsp.res_bits = 0;
+ m_vdsp.backend_state = NULL;
+
+ m_vinfo.version = 0;
+ m_vinfo.channels = 0;
+ m_vinfo.rate = 0;
+ m_vinfo.bitrate_upper = 0;
+ m_vinfo.bitrate_nominal = 0;
+ m_vinfo.bitrate_lower = 0;
+ m_vinfo.bitrate_window = 0;
+ m_vinfo.codec_setup = NULL;
+
+ m_vcomment.user_comments = NULL;
+ m_vcomment.comment_lengths = NULL;
+ m_vcomment.comments = 0;
+ m_vcomment.vendor = NULL;
}
EncoderVorbis::~EncoderVorbis() {