summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoão Paulo Rechi Vita <joao.vita@gmail.com>2008-08-21 17:23:16 -0300
committerLennart Poettering <lennart@poettering.net>2008-09-11 01:12:08 +0300
commit027940b316e51bda5fe7a8b8d9d4bde925ffb04d (patch)
tree5cb53d9d0d8f407773948eb916a732ac9a4ef1a4
parent0e817579ee13904e7751860a1c91291143d6e53c (diff)
Remove u->channels and u->rates, since it's redundant info
-rw-r--r--src/modules/module-bt-device.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/modules/module-bt-device.c b/src/modules/module-bt-device.c
index 5bc0f285..30f8c700 100644
--- a/src/modules/module-bt-device.c
+++ b/src/modules/module-bt-device.c
@@ -97,8 +97,6 @@ struct userdata {
char *name;
char *addr;
char *profile;
- int rate;
- int channels;
pa_sample_spec ss;
int audioservice_fd;
@@ -251,7 +249,7 @@ static int bt_a2dp_init(struct userdata *u) {
sbc_capabilities_t *cap = &u->a2dp.sbc_capabilities;
unsigned int max_bitpool, min_bitpool;
- switch (u->rate) {
+ switch (u->ss.rate) {
case 48000:
cap->frequency = BT_SBC_SAMPLING_FREQ_48000;
break;
@@ -265,14 +263,14 @@ static int bt_a2dp_init(struct userdata *u) {
cap->frequency = BT_SBC_SAMPLING_FREQ_16000;
break;
default:
- pa_log_error("Rate %d not supported", u->rate);
+ pa_log_error("Rate %d not supported", u->ss.rate);
return -1;
}
// if (cfg->has_channel_mode)
// cap->channel_mode = cfg->channel_mode;
// else
- if (u->channels == 2) {
+ if (u->ss.channels == 2) {
if (cap->channel_mode & BT_A2DP_CHANNEL_MODE_JOINT_STEREO)
cap->channel_mode = BT_A2DP_CHANNEL_MODE_JOINT_STEREO;
else if (cap->channel_mode & BT_A2DP_CHANNEL_MODE_STEREO)
@@ -418,9 +416,6 @@ static int bt_setconf(struct userdata *u) {
else
u->ss.format = PA_SAMPLE_U8;
- u->ss.rate = u->rate;
- u->ss.channels = u->channels;
-
memset(setconf_req, 0, BT_AUDIO_IPC_PACKET_SIZE);
setconf_req->h.msg_type = BT_SETCONFIGURATION_REQ;
strncpy(setconf_req->device, u->addr, 18);
@@ -837,7 +832,6 @@ finish:
int pa__init(pa_module* m) {
int e;
- const char *rate, *channels;
pa_modargs *ma;
pa_sink_new_data data;
struct pollfd *pollfd;
@@ -876,11 +870,11 @@ int pa__init(pa_module* m) {
pa_log_error("failed to get profile from module arguments");
goto fail;
}
- if (pa_modargs_get_value_u32(ma, "rate", &u->rate) < 0) {
+ if (pa_modargs_get_value_u32(ma, "rate", &u->ss.rate) < 0) {
pa_log_error("failed to get rate from module arguments");
goto fail;
}
- if (pa_modargs_get_value_u32(ma, "channels", &u->channels) < 0) {
+ if (pa_modargs_get_value_u32(ma, "channels", &u->ss.channels) < 0) {
pa_log_error("failed to get channels from module arguments");
goto fail;
}