Lines Matching refs:play_stream
173 if (s == ctx->play_stream) {
220 ctx->play_stream = pa_stream_new(c, "loopback: play", &ctx->sample_spec, NULL);
221 pa_assert(ctx->play_stream != NULL);
222 pa_stream_set_state_callback(ctx->play_stream, stream_state_callback, ctx);
223 pa_stream_set_write_callback(ctx->play_stream, calibrate_write_cb, ctx);
224 pa_stream_set_underflow_callback(ctx->play_stream, underflow_cb, userdata);
226 pa_stream_connect_playback(ctx->play_stream, getenv("TEST_SINK"), &buffer_attr,
299 if (ctx->play_stream) {
300 pa_stream_disconnect(ctx->play_stream);
301 pa_stream_unref(ctx->play_stream);