Lines Matching defs:data
236 pa_sink_input_new_data data;
259 * when accessing the file data. Eventually we should move the
260 * file reader into the main event loop and pass the data over the
298 pa_sink_input_new_data_init(&data);
299 pa_sink_input_new_data_set_sink(&data, sink, false, true);
300 data.driver = __FILE__;
301 pa_sink_input_new_data_set_sample_spec(&data, &ss);
302 pa_sink_input_new_data_set_channel_map(&data, &cm);
303 pa_sink_input_new_data_set_volume(&data, volume);
304 pa_proplist_sets(data.proplist, PA_PROP_MEDIA_NAME, pa_path_get_filename(fname));
305 pa_proplist_sets(data.proplist, PA_PROP_MEDIA_FILENAME, fname);
306 pa_sndfile_init_proplist(u->sndfile, data.proplist);
308 pa_sink_input_new(&u->sink_input, sink->core, &data);
309 pa_sink_input_new_data_done(&data);