*** bzo has joined #xdandroid | 00:24 | |
*** jonpry has quit IRC | 01:38 | |
*** rpierce99 has quit IRC | 02:04 | |
*** rpierce99 has joined #xdandroid | 02:14 | |
*** rpierce99 has quit IRC | 02:39 | |
*** bzo has quit IRC | 02:43 | |
*** rpierce99 has joined #xdandroid | 02:55 | |
*** rpierce99 has quit IRC | 02:56 | |
*** kalemas has joined #xdandroid | 04:35 | |
*** babijoee has quit IRC | 04:49 | |
*** virsys has joined #xdandroid | 04:55 | |
*** mayday_jay has quit IRC | 05:50 | |
*** mayday_jay has joined #xdandroid | 05:52 | |
*** hardwalker has quit IRC | 05:57 | |
*** mgross029 has joined #xdandroid | 07:42 | |
*** helicopter88 has joined #xdandroid | 08:41 | |
*** helicopter88 is now known as helicAWAY | 08:47 | |
*** fishhead2567 has joined #xdandroid | 09:21 | |
*** helicAWAY is now known as helicopter88 | 09:24 | |
*** Kraln has quit IRC | 09:44 | |
*** kalemas has left #xdandroid | 09:45 | |
*** Kraln has joined #xdandroid | 09:46 | |
*** NeoMatrixJR has joined #xdandroid | 09:57 | |
*** rpierce99 has joined #xdandroid | 10:22 | |
*** d3tul3 has joined #xdandroid | 10:40 | |
*** helicopter88 has quit IRC | 10:45 | |
*** helicopter88 has joined #xdandroid | 10:46 | |
*** NeoMatrixJR has quit IRC | 10:48 | |
*** NeoMatrixJR has joined #xdandroid | 10:59 | |
*** jonpry has joined #xdandroid | 11:18 | |
*** emwe has joined #xdandroid | 11:19 | |
d3tul3 | hey emwe i think what you are suggesting is fine/less intrusive than messing with frameworks base...my only hope was that routing that extra one umute call to audiomanager might nudge the mic into picking up in all instances...but don't know if it's worth it | 11:26 |
---|---|---|
emwe | heh. let's say i am not switching back and pursuing the audiomgr route. | 11:27 |
emwe | hope it's worth it. | 11:28 |
d3tul3 | it's about the first time in months that i've heard my phone's ringtone on an incoming call | 11:53 |
*** NeoMatrixJR has quit IRC | 12:13 | |
mgross029 | emwe / detule Interesting conversation. I must have missed something in the logs? | 12:15 |
emwe | mgross029: nah, just the routing of the mute instructions over audiomgr instead of ril | 12:28 |
emwe | any of you guys can haretconsole? | 12:29 |
d3tul3 | no, btw perhaps the way i patched AudioHardware.cpp when doing send_mic_mute to audiomanager was not entirely correct, as mic bias stays on (1) at the end of a phone call....really the only time i see it turning off is when i press the mute button during a phone call....not sure what the implications of this are -> increased power drain? | 12:35 |
mgross029 | emwe, so are these just thoughts or is this something that you committed already? | 12:44 |
emwe | mgross029: we are just tinkering around. watch the repos for changes. | 12:45 |
emwe | ;) | 12:45 |
emwe | it's my daily routine to check what happened on gitorious | 12:45 |
*** kalemas has joined #xdandroid | 12:45 | |
mgross029 | Funny thing is I've been looking at this very area of what could be causing the mic mute on first call. (audmgr.c and AudioHardware.cpp) | 12:45 |
mgross029 | I do watch the repos for changes. I actually have a script that I run which does a git pull for all of the kernels I have compiled. :p | 12:46 |
mgross029 | I also check there too. :p | 12:46 |
emwe | d3tul3: ok, to get that right we need the input == null case? | 12:47 |
mgross029 | Anyway, I kept noticing as a call comes in that the snd_mic_mute would be enabled at times in the logs | 12:47 |
mgross029 | Just something that kept standing out to me | 12:49 |
d3tul3 | emwe, yeah i guess so, contrary to the instructions in the library | 12:51 |
emwe | ok, keeping in mind. | 12:52 |
emwe | or let's say, reverting the commit :P | 12:52 |
d3tul3 | i'll give it a go | 12:55 |
d3tul3 | wait revert what commit | 13:03 |
emwe | the local one dropping the input == null path | 13:05 |
d3tul3 | well when i did it over here dropped also the mic mute calls in input != null, but those i can see needing to stay dropped | 13:06 |
emwe | needing to stay dropped as in issued? | 13:07 |
d3tul3 | no as in we don't need those since input!=null is when the phone app sets the mic_mute flag | 13:08 |
d3tul3 | but input==null i guess the phone app is not doing much then, so perhaps libaudio needs to take care of setting the flags in this instance | 13:09 |
emwe | ok, i think i need to actually "debug-log" this :) | 13:09 |
emwe | i haven't done much, yet. | 13:09 |
d3tul3 | i am just worried that all the progress i was seeing in subsequent calls was from the fact that the way i had it set up i wasn't turning mic bias off at the end of a phone call | 13:09 |
emwe | so you had no mic issue... | 13:11 |
d3tul3 | yeah once it was on, it stayed on, therfore no mic issue on subsequent calls | 13:13 |
*** NeoMatrixJR has joined #xdandroid | 13:23 | |
*** NeoMatrixJR has quit IRC | 13:30 | |
d3tul3 | emwe, bringing back the mic_mute calls inside the input==null brackets restores mic_bias(0) at the end of calls, however as suspected, it sets me back in terms of no mic on incoming calls + silent | 13:46 |
d3tul3 | emwe, here's also another questions, in libaudio* what's device=0 and device=1 ? one's headset speaker+mic , the other is speaker + dualmic? | 13:53 |
emwe | that's setup in the devices(_htc?).c file to my understanding and read out by libaudio from my understanding | 14:23 |
emwe | 0=HANDSET 1=SPEAKER | 14:23 |
d3tul3 | thanks | 14:24 |
emwe | i'll dig into this, sorry for delaying any work on your side.... i hate myself for getting side tracked... | 14:26 |
d3tul3 | no no it's ok i have an idea what's going on at least on my device | 14:36 |
d3tul3 | all routing calls device = 0, mic = anything kind of get ignored | 14:36 |
d3tul3 | so the handset mic is either not operational | 14:37 |
d3tul3 | or we're not routing to it properly | 14:37 |
*** NeoMatrixJR has joined #xdandroid | 14:38 | |
emwe | shouldn't it be an issue for others then, too? | 14:40 |
d3tul3 | yeah well when not in silent device=1 mic=1 also gets called | 14:41 |
d3tul3 | that call is not made when in silent | 14:42 |
d3tul3 | (about the only difference i can see) | 14:42 |
d3tul3 | so i think this is an issue for others to the extent that the mic rounting is not working properly | 14:42 |
d3tul3 | but it's only a theory, one in many that have not panned out, and likely this one is pretty groundless too | 14:43 |
d3tul3 | nevermind, likely doesn't make a difference | 14:45 |
emwe | i wish i could chime into your ideas... | 14:47 |
emwe | can you please force me into this? ;) | 14:48 |
emwe | bah, bt won't enable... logcat tells something about permission issue when ... | 14:48 |
*** virsys has quit IRC | 14:57 | |
emwe | if i look at CAs libaudio, it seems JB split it up into libaudio and libacoustic | 14:59 |
mgross029 | emwe, not sure why but I've had a few issues with bt not enabling too. My dmesg is filled with the restarting duplicate services I noticed | 15:02 |
emwe | that sounds like something bails out in init | 15:02 |
emwe | i see nothing obviously wrong here.. | 15:03 |
emwe | started out of a sudden. | 15:03 |
mgross029 | Correct. | 15:03 |
*** virsys has joined #xdandroid | 15:03 | |
mgross029 | But then it only happens every once in a while. Usually a reboot will fix it. | 15:04 |
emwe | i have reboot and kexec'ed quite some times now... | 15:04 |
mgross029 | I'll see if I was able to save any of those logs | 15:04 |
emwe | those dup definition thingies pile up if some kernel code fails iirc | 15:05 |
emwe | but i see nothing... | 15:05 |
mgross029 | Ok. | 15:05 |
emwe | of course the question, why it starts to fail :) | 15:06 |
emwe | reboot once agian. perhaps fs is fscked up... | 15:07 |
emwe | last resort is data.ext4 renewal | 15:07 |
mgross029 | Yeah. Something could have been written badly at some point. | 15:08 |
*** d3tul3 has quit IRC | 15:08 | |
*** lapin has joined #xdandroid | 15:08 | |
mgross029 | On a good note though I received a call today and it actually worked! Ringer and Mic both... HA! So the wife wasn't cursing me on the other end. :p | 15:08 |
emwe | hehe ;) | 15:10 |
emwe | i am getting far to less calls to say all is good here. | 15:10 |
emwe | when i usually get them i am in silent mode with headset plugged. | 15:10 |
emwe | ok, pulling all apk and doing away with the old data.ext4 | 15:12 |
emwe | hmhmhm, i really whonder why JB split all that stuff out into libacoustic. CA has it all in libaudio. | 15:15 |
emwe | ("all" as in pieces that are in our libacoustic) | 15:15 |
mgross029 | Doesn't sound to efficient | 15:16 |
emwe | seems that was inspired how google did it in their libaudio. | 15:20 |
emwe | but Qualcomm/CodeAurora has it all stuffed into one lib. | 15:20 |
emwe | /Explicitly mute the mic to release DSP resources << detule, that sounds like we should make sure it's off ;) | 15:21 |
*** virsys has quit IRC | 15:26 | |
*** NeoMatrixJR has quit IRC | 15:37 | |
emwe | hm, that didn't do it. can it be because i got bt enabled in wince? | 15:51 |
mgross029 | emwe, bt enabled in wince will cause problems. I have mine disabled. | 16:10 |
emwe | ai | 16:10 |
emwe | i shouldn't have transferred a file in wince with bt | 16:10 |
emwe | thanks | 16:10 |
mgross029 | :) NP... Have to run. Laters. | 16:11 |
emwe | laters. | 16:11 |
*** helicopter88 has quit IRC | 16:20 | |
*** lapin has quit IRC | 16:24 | |
*** billee has left #xdandroid | 16:33 | |
*** NeoMatrixJR has joined #xdandroid | 16:45 | |
*** SytheZN has joined #xdandroid | 17:18 | |
*** emwe has quit IRC | 17:19 | |
*** SytheZN has quit IRC | 17:26 | |
*** NeoMatrixJR has quit IRC | 17:38 | |
*** fishhead2567 has quit IRC | 18:01 | |
*** vinceweis_ has joined #xdandroid | 18:11 | |
*** d3tul3 has joined #xdandroid | 19:01 | |
*** detule has quit IRC | 19:03 | |
*** d3tul3 is now known as detule | 19:03 | |
*** lapin has joined #xdandroid | 19:08 | |
*** lapin has quit IRC | 19:35 | |
*** Yusuke14 has quit IRC | 20:04 | |
*** hardwalker has joined #xdandroid | 20:16 | |
*** babijoee has joined #xdandroid | 20:22 | |
*** kalemas has left #xdandroid | 20:22 | |
*** KIKMS has joined #xdandroid | 20:34 | |
KIKMS | hi | 20:34 |
*** KIKMS is now known as Defyy | 20:51 | |
*** Defyy is now known as Defy | 20:51 | |
*** Defy is now known as Defyy | 20:51 | |
*** Defyy is now known as KIKMS | 20:52 | |
*** detule has quit IRC | 20:53 | |
*** KIKMS is now known as Defyy | 20:59 | |
*** Defyy is now known as [Defy] | 21:02 | |
*** [Defy] is now known as Defy` | 21:02 | |
*** Defy` has left #xdandroid | 21:03 | |
*** vinceweis_ has quit IRC | 21:29 | |
*** rpierce99 has quit IRC | 22:17 | |
*** mgross029 has quit IRC | 22:24 | |
*** TheSeven has joined #xdandroid | 22:33 | |
*** [7] has quit IRC | 22:33 | |
*** babijoee has quit IRC | 22:50 | |
*** mgross029 has joined #xdandroid | 23:05 | |
*** mgross029 has quit IRC | 23:11 | |
*** mgross029 has joined #xdandroid | 23:12 | |
*** rpierce99 has joined #xdandroid | 23:46 |
Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!