summaryrefslogtreecommitdiff
path: root/ext/modplug
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2010-01-04 10:23:37 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-01-04 10:23:37 +0100
commitb648638401b7acf7bea47fd858faf0b2027e02b7 (patch)
tree197db7044b80ba6af3ea376ecb2a516f7572f56c /ext/modplug
parentf116cb0c1941709b8c97ceed2bfbcdf8f79aaa4b (diff)
downloadgstreamer-plugins-bad-b648638401b7acf7bea47fd858faf0b2027e02b7.tar.gz
modplug: Fix indention
Diffstat (limited to 'ext/modplug')
-rw-r--r--ext/modplug/gstmodplug.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/modplug/gstmodplug.cc b/ext/modplug/gstmodplug.cc
index 3073c7085..f7b781031 100644
--- a/ext/modplug/gstmodplug.cc
+++ b/ext/modplug/gstmodplug.cc
@@ -88,14 +88,13 @@ static GstStaticPadTemplate modplug_src_template_factory =
GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_SRC,
GST_PAD_ALWAYS,
- GST_STATIC_CAPS (
- "audio/x-raw-int,"
+ GST_STATIC_CAPS ("audio/x-raw-int,"
" endianness = (int) BYTE_ORDER,"
" signed = (boolean) true,"
" width = (int) 32,"
" depth = (int) 32,"
" rate = (int) { 8000, 11025, 22050, 44100 },"
- " channels = (int) [ 1, 2 ]; "
+ " channels = (int) [ 1, 2 ]; "
"audio/x-raw-int,"
" endianness = (int) BYTE_ORDER,"
" signed = (boolean) true,"
@@ -479,14 +478,15 @@ gst_modplug_load_song (GstModPlug * modplug)
gst_structure_get_int (structure, "rate", &modplug->frequency);
modplug->read_samples = 1152;
- modplug->read_bytes = modplug->read_samples * modplug->channel * modplug->bits / 8;
+ modplug->read_bytes =
+ modplug->read_samples * modplug->channel * modplug->bits / 8;
GST_DEBUG_OBJECT (modplug, "Loading song");
modplug->mSoundFile = new CSoundFile;
modplug->mSoundFile->SetWaveConfig (modplug->frequency, modplug->bits,
- modplug->channel);
+ modplug->channel);
modplug->mSoundFile->SetWaveConfigEx (modplug->surround, !modplug->oversamp,
modplug->reverb, true, modplug->megabass, modplug->noise_reduction, true);