Commit 98772cbf authored by Mike Melanson's avatar Mike Melanson

if audio is PCM, push it through (sync is not perfect yet)

Originally committed as revision 3528 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 50883632
......@@ -494,13 +494,10 @@ memset(data, 0x00, s->block_align * 2);
bytes_decoded = s->block_align * 2;
}
} else {
if (s->bits == 16) {
} else {
/* copy the data but convert it to signed */
for (i = 0; i < s->block_align; i++)
data[i * 2 + 1] = buf[i] + 0x80;
bytes_decoded = s->block_align * 2;
}
/* copy the data but convert it to signed */
for (i = 0; i < s->block_align; i++)
data[i * 2 + 1] = buf[i] + 0x80;
bytes_decoded = s->block_align * 2;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment