mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2026-01-02 11:08:39 -05:00
Revert r1404 and keep it on a development branch until it is fully tested.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1409 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
6ca819354c
commit
8dc6214276
36 changed files with 499 additions and 990 deletions
|
|
@ -74,26 +74,21 @@ static int sink_input_peek(pa_sink_input *i, pa_memchunk *chunk) {
|
|||
if (!u->memchunk.memblock) {
|
||||
uint32_t fs = pa_frame_size(&i->sample_spec);
|
||||
sf_count_t n;
|
||||
void *p;
|
||||
|
||||
u->memchunk.memblock = pa_memblock_new(i->sink->core->mempool, BUF_SIZE);
|
||||
u->memchunk.index = 0;
|
||||
|
||||
p = pa_memblock_acquire(u->memchunk.memblock);
|
||||
|
||||
if (u->readf_function) {
|
||||
if ((n = u->readf_function(u->sndfile, p, BUF_SIZE/fs)) <= 0)
|
||||
if ((n = u->readf_function(u->sndfile, u->memchunk.memblock->data, BUF_SIZE/fs)) <= 0)
|
||||
n = 0;
|
||||
|
||||
u->memchunk.length = n * fs;
|
||||
} else {
|
||||
if ((n = sf_read_raw(u->sndfile, p, BUF_SIZE)) <= 0)
|
||||
if ((n = sf_read_raw(u->sndfile, u->memchunk.memblock->data, BUF_SIZE)) <= 0)
|
||||
n = 0;
|
||||
|
||||
u->memchunk.length = n;
|
||||
}
|
||||
|
||||
pa_memblock_release(u->memchunk.memblock);
|
||||
|
||||
if (!u->memchunk.length) {
|
||||
free_userdata(u);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue