Ticket #37 (closed defect: fixed)

Opened 5 years ago

Last modified 5 years ago

Esound applications can't capture sound

Reported by: Hiroshi TANABE Owned by: lennart
Milestone: Component: core
Keywords: Cc:

Description

Esound applications can't capture sound. The following patch fixes it.

Index: src/pulsecore/protocol-esound.c
===================================================================
--- src/pulsecore/protocol-esound.c     (revision 1404)
+++ src/pulsecore/protocol-esound.c     (working copy)
@@ -463,7 +463,7 @@
     sdata.client = c->client;

     c->source_output = pa_source_output_new(c->protocol->core, &sdata, 9);
-    CHECK_VALIDITY(c->sink_input, "Failed to create source_output.");
+    CHECK_VALIDITY(c->source_output, "Failed to create source_output.");

     l = (size_t) (pa_bytes_per_second(&ss)*RECORD_BUFFER_SECONDS);
     c->output_memblockq = pa_memblockq_new(

Change History

Changed 5 years ago by ossman

Fixed in r1411. Thanks.

Changed 5 years ago by ossman

  • status changed from new to closed
  • resolution set to fixed
Note: See TracTickets for help on using tickets.