aboutsummaryrefslogtreecommitdiff
path: root/celt
diff options
context:
space:
mode:
authorRalph Giles <giles@mozilla.com>2012-03-19 17:10:13 -0700
committerJean-Marc Valin <jmvalin@jmvalin.ca>2012-04-02 11:21:36 -0400
commit5f6e472c91fb0a4a6b467f1b3c2d508b919fc9d5 (patch)
tree2be2d17c716c1b110828e091873626fa25ae4eb5 /celt
parent905197d750d00c460c4940c42c3b7b9c2f85441c (diff)
downloadlibopus-5f6e472c91fb0a4a6b467f1b3c2d508b919fc9d5.tar.gz
Remove trailing whitespace.
Also fixes a minor typo.
Diffstat (limited to 'celt')
-rw-r--r--celt/opus_custom_demo.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/celt/opus_custom_demo.c b/celt/opus_custom_demo.c
index e25341b8..f15ce42b 100644
--- a/celt/opus_custom_demo.c
+++ b/celt/opus_custom_demo.c
@@ -5,14 +5,14 @@
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
-
+
- Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
-
+
- Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
-
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -66,7 +66,7 @@ int main(int argc, char *argv[])
"<input> <output>\n");
return 1;
}
-
+
rate = (opus_int32)atol(argv[1]);
channels = atoi(argv[2]);
frame_size = atoi(argv[3]);
@@ -100,7 +100,7 @@ int main(int argc, char *argv[])
fclose(fin);
return 1;
}
-
+
enc = opus_custom_encoder_create(mode, channels, &err);
if (err != 0)
{
@@ -124,7 +124,7 @@ int main(int argc, char *argv[])
complexity=atoi(argv[5]);
opus_custom_encoder_ctl(enc,OPUS_SET_COMPLEXITY(complexity));
}
-
+
in = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
out = (opus_int16*)malloc(frame_size*channels*sizeof(opus_int16));
@@ -186,7 +186,7 @@ int main(int argc, char *argv[])
skip = 0;
}
PRINT_MIPS(stderr);
-
+
opus_custom_encoder_destroy(enc);
opus_custom_decoder_destroy(dec);
fclose(fin);