summaryrefslogtreecommitdiff
path: root/gr-vocoder/lib/cvsd_encode_sb_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-vocoder/lib/cvsd_encode_sb_impl.cc')
-rw-r--r--gr-vocoder/lib/cvsd_encode_sb_impl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-vocoder/lib/cvsd_encode_sb_impl.cc b/gr-vocoder/lib/cvsd_encode_sb_impl.cc
index 3c8d69c1d2..3c4656cf34 100644
--- a/gr-vocoder/lib/cvsd_encode_sb_impl.cc
+++ b/gr-vocoder/lib/cvsd_encode_sb_impl.cc
@@ -129,7 +129,7 @@ namespace gr {
// Update Accum (i.e. the reference value)
if(output_bit) {
d_accum=d_accum+d_stepsize;
- //printf("Addding %d to the accum; the result is: %d.\n", d_stepsize, d_accum);
+ //printf("Adding %d to the accum; the result is: %d.\n", d_stepsize, d_accum);
}
else {
d_accum=d_accum-d_stepsize;
@@ -165,7 +165,7 @@ namespace gr {
// Runner is a shift-register; shift left, add on newest output bit
d_runner = (d_runner<<1) | ((unsigned int) output_bit);
- // Update the ouput type; shift left, add on newest output bit
+ // Update the output type; shift left, add on newest output bit
// If you have put in 8 bits, output it as a byte
output_byte = (output_byte<<1) | output_bit;
bit_count++;