summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Pöschel <github@basicmaster.de>2015-04-14 21:53:48 +0200
committerStefan Pöschel <github@basicmaster.de>2015-04-14 21:53:48 +0200
commit2cf0f260ec3ed26035840ea5c956aed96e7a5853 (patch)
tree8cf045207310edbfcf52db3ec77fc025836d9079 /src
parentc6cbb0864a40effe1219116f0f2b541c46d96024 (diff)
downloadODR-AudioEnc-2cf0f260ec3ed26035840ea5c956aed96e7a5853.tar.gz
ODR-AudioEnc-2cf0f260ec3ed26035840ea5c956aed96e7a5853.tar.bz2
ODR-AudioEnc-2cf0f260ec3ed26035840ea5c956aed96e7a5853.zip
Fix corrupt Slideshow at 23 byte PAD
Due to a bug, at 23 byte PAD size, 13 instead of 12 bytes of data were output in the first data group. This lead to invalid CRC at the receiver.
Diffstat (limited to 'src')
-rw-r--r--src/mot-encoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mot-encoder.cpp b/src/mot-encoder.cpp
index 0c39556..0d8d8d6 100644
--- a/src/mot-encoder.cpp
+++ b/src/mot-encoder.cpp
@@ -1078,7 +1078,7 @@ void writeMotPAD(int output_fd,
if (i == 0) { // First segment
firstseg = 1;
- curseglen = padlen-10;
+ curseglen = get_xpadlength(xpadlengthmask);
// size of first X-PAD = MSC-DG + DGLI-DG + End of CI list + 2x CI = size of subsequent non-CI X-PADs
non_ci_seglen = curseglen + 4 + 1 + 2;