Skip to content
Snippets Groups Projects
Commit 2291834b authored by Tilghman Lesher's avatar Tilghman Lesher
Browse files

Bug 7372: Wrong size for the block alignment (should have been 4 bytes;

writing 4 from a 2-byte integer caused extra (wrong) bytes set in the header)


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35184 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 12164df2
Branches
Tags
No related merge requests found
...@@ -277,7 +277,7 @@ static int write_header(FILE *f) ...@@ -277,7 +277,7 @@ static int write_header(FILE *f)
/* Mono = 1 channel */ /* Mono = 1 channel */
unsigned short chans = htols(1); unsigned short chans = htols(1);
/* Each block of data is exactly 65 bytes in size. */ /* Each block of data is exactly 65 bytes in size. */
unsigned short block_align = htols(MSGSM_FRAME_SIZE); unsigned int block_align = htoll(MSGSM_FRAME_SIZE);
/* Not actually 2, but rounded up to the nearest bit */ /* Not actually 2, but rounded up to the nearest bit */
unsigned short bits_per_sample = htols(2); unsigned short bits_per_sample = htols(2);
/* Needed for compressed formats */ /* Needed for compressed formats */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment