diff options
| author | Lennart Poettering <lennart@poettering.net> | 2010-02-25 00:39:56 +0100 | 
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2010-02-25 00:39:56 +0100 | 
| commit | 5030852c8e4c0a24a3a42e5583358daaad7ec0df (patch) | |
| tree | 63141d0ac9daf8b1e667fdbfdd06e857a737c7ce /src | |
| parent | 066e6264013a530a940a703b21a12922db22b037 (diff) | |
virtual: minor simplifications for the virtual sink
Diffstat (limited to 'src')
| -rw-r--r-- | src/modules/module-ladspa-sink.c | 5 | ||||
| -rw-r--r-- | src/modules/module-virtual-sink.c | 31 | 
2 files changed, 14 insertions, 22 deletions
diff --git a/src/modules/module-ladspa-sink.c b/src/modules/module-ladspa-sink.c index 185871be..88df67ec 100644 --- a/src/modules/module-ladspa-sink.c +++ b/src/modules/module-ladspa-sink.c @@ -158,7 +158,9 @@ static void sink_request_rewind_cb(pa_sink *s) {          return;      /* Just hand this one over to the master sink */ -    pa_sink_input_request_rewind(u->sink_input, s->thread_info.rewind_nbytes + pa_memblockq_get_length(u->memblockq), TRUE, FALSE, FALSE); +    pa_sink_input_request_rewind(u->sink_input, +                                 s->thread_info.rewind_nbytes + +                                 pa_memblockq_get_length(u->memblockq), TRUE, FALSE, FALSE);  }  /* Called from I/O thread context */ @@ -924,7 +926,6 @@ void pa__done(pa_module*m) {          pa_memblockq_free(u->memblockq);      pa_xfree(u->input); -      pa_xfree(u->control);      pa_xfree(u); diff --git a/src/modules/module-virtual-sink.c b/src/modules/module-virtual-sink.c index 4fe4867e..de8ea585 100644 --- a/src/modules/module-virtual-sink.c +++ b/src/modules/module-virtual-sink.c @@ -142,7 +142,9 @@ static void sink_request_rewind_cb(pa_sink *s) {          return;      /* Just hand this one over to the master sink */ -    pa_sink_input_request_rewind(u->sink_input, s->thread_info.rewind_nbytes + pa_memblockq_get_length(u->memblockq), TRUE, FALSE, FALSE); +    pa_sink_input_request_rewind(u->sink_input, +                                 s->thread_info.rewind_nbytes + +                                 pa_memblockq_get_length(u->memblockq), TRUE, FALSE, FALSE);  }  /* Called from I/O thread context */ @@ -234,17 +236,20 @@ static int sink_input_pop_cb(pa_sink_input *i, size_t nbytes, pa_memchunk *chunk      dst = (float*) pa_memblock_acquire(chunk->memblock);      /* PUT YOUR CODE HERE TO DO SOMETHING WITH THE DATA */ -    /* example, copy input to output */ + +    /* As an example, copy input to output */      for (c = 0; c < u->channels; c++) { -        pa_sample_clamp(PA_SAMPLE_FLOAT32NE,dst+c, u->channels*sizeof(float), -                        src+c, u->channels*sizeof(float),n); +        pa_sample_clamp(PA_SAMPLE_FLOAT32NE, +                        dst+c, u->channels*sizeof(float), +                        src+c, u->channels*sizeof(float), +                        n);      } +      pa_memblock_release(tchunk.memblock);      pa_memblock_release(chunk->memblock);      pa_memblock_unref(tchunk.memblock); -      curr_latency =          /* Get the latency of the master sink */          pa_sink_get_latency_within_thread(i->sink) + @@ -254,7 +259,6 @@ static int sink_input_pop_cb(pa_sink_input *i, size_t nbytes, pa_memchunk *chunk      /* FIXME: do something with the latency */ -      return 0;  } @@ -275,8 +279,8 @@ static void sink_input_process_rewind_cb(pa_sink_input *i, size_t nbytes) {          if (amount > 0) {              pa_memblockq_seek(u->memblockq, - (int64_t) amount, PA_SEEK_RELATIVE, TRUE); -            /* NEED TO RESET POST-PROCESSING HERE */ +            /* PUT YOUR CODE HERE TO RESET POST-PROCESSING  */          }      } @@ -480,19 +484,10 @@ int pa__init(pa_module*m) {          goto fail;      } -      u = pa_xnew0(struct userdata, 1); -    if (!u) { -        pa_log("Failed to alloc userdata"); -        goto fail; -    }      u->module = m;      m->userdata = u;      u->memblockq = pa_memblockq_new(0, MEMBLOCKQ_MAXLENGTH, 0, pa_frame_size(&ss), 1, 1, 0, NULL); -    if (!u->memblockq) { -        pa_log("Failed to create sink memblockq."); -        goto fail; -    }      u->channels = ss.channels;      /* Create sink */ @@ -572,8 +567,6 @@ int pa__init(pa_module*m) {      u->sink_input->mute_changed = sink_input_mute_changed_cb;      u->sink_input->userdata = u; -    //pa_sink_input_set_requested_latency(u->sink_input, 5000); -      pa_sink_put(u->sink);      pa_sink_input_put(u->sink_input); @@ -626,10 +619,8 @@ void pa__done(pa_module*m) {      if (u->sink)          pa_sink_unref(u->sink); -      if (u->memblockq)          pa_memblockq_free(u->memblockq); -      pa_xfree(u);  }  | 
