From: Jason Newton Date: Sat, 19 Sep 2009 18:15:05 +0000 (-0700) Subject: module-equalizer-sink: disable active profile name restoration as something in pack... X-Git-Tag: submit/2.0-panda/20130828.192557~1252^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8952001699317952318918835252f63c7a899f9;p=profile%2Fivi%2Fpulseaudio-panda.git module-equalizer-sink: disable active profile name restoration as something in pack/unpack is funky and I don't have time for a proper fix --- diff --git a/src/modules/module-equalizer-sink.c b/src/modules/module-equalizer-sink.c index 74d7497..3a28b49 100755 --- a/src/modules/module-equalizer-sink.c +++ b/src/modules/module-equalizer-sink.c @@ -978,13 +978,13 @@ static void load_state(struct userdata *u){ memcpy(u->Hs[c][a_i], H, FILTER_SIZE * sizeof(float)); pa_aupdate_write_end(u->a_H[c]); } - unpack(((char *)value.data) + FILTER_STATE_SIZE, value.size - FILTER_STATE_SIZE, &names, &n_profs); - n_profs = PA_MIN(n_profs, u->channels); - for(size_t c = 0; c < n_profs; ++c){ - pa_xfree(u->base_profiles[c]); - u->base_profiles[c] = names[c]; - } - pa_xfree(names); + //unpack(((char *)value.data) + FILTER_STATE_SIZE, value.size - FILTER_STATE_SIZE, &names, &n_profs); + //n_profs = PA_MIN(n_profs, u->channels); + //for(size_t c = 0; c < n_profs; ++c){ + // pa_xfree(u->base_profiles[c]); + // u->base_profiles[c] = names[c]; + //} + //pa_xfree(names); } pa_datum_free(&value); }else{