diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-09 18:56:38 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-09 18:56:38 +0100 |
commit | 161b139b62811cce3ec86bd86d32d165801ea123 (patch) | |
tree | 978f021804abfaf421029750d6c36daffcc67689 | |
parent | 995148928dfe602854fea05b57e6a4b995b08805 (diff) | |
download | ODR-AudioEnc-161b139b62811cce3ec86bd86d32d165801ea123.tar.gz ODR-AudioEnc-161b139b62811cce3ec86bd86d32d165801ea123.tar.bz2 ODR-AudioEnc-161b139b62811cce3ec86bd86d32d165801ea123.zip |
Fix mot-encoder typo
-rw-r--r-- | src/mot-encoder.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mot-encoder.c b/src/mot-encoder.c index 18703b1..4d67acb 100644 --- a/src/mot-encoder.c +++ b/src/mot-encoder.c @@ -559,7 +559,7 @@ void writeDLS(int output_fd, const char* dls_file, int padlen) { void create_dls_datagroup (char* text, int padlen, UCHAR*** p_dlsdg, int* p_numdg) { UCHAR dlsseg[8][16]; // max 8 segments, each max 16 chars - UCHAR** dlsdg; // Array od datagroups composing dls text; + UCHAR** dlsdg; // Array of datagroups composing dls text; int numseg; // Number of DSL segments @@ -605,8 +605,8 @@ void create_dls_datagroup (char* text, int padlen, UCHAR*** p_dlsdg, int* p_numd *p_numdg = numdg; fprintf(stderr, "PAD Length: %d\n", padlen); fprintf(stderr, "DLS text: %s\n", text); - fprintf(stderr, "Number od DLS segments: %d\n", numseg); - fprintf(stderr, "Number od DLS data grupus: %d\n", numdg); + fprintf(stderr, "Number of DLS segments: %d\n", numseg); + fprintf(stderr, "Number of DLS data groups: %d\n", numdg); if (padlen == 17) xpadlengthmask = 3; |