mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-21 06:16:59 +00:00
if audio is PCM, push it through (sync is not perfect yet)
Originally committed as revision 3528 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5088363247
commit
98772cbf7b
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user