IRC log for #htc-linux on 20111216

00:18.46*** part/#htc-linux ap (~andy_page@host81-149-51-222.in-addr.btopenworld.com)
00:29.13*** join/#htc-linux ap (~andy_page@host81-149-51-222.in-addr.btopenworld.com)
00:34.25*** part/#htc-linux ap (~andy_page@host81-149-51-222.in-addr.btopenworld.com)
00:38.23WisTilt2jonpry: you around?  we have ashmem blit working. still have some issues with alignment or offsets but it works.  need your keen eye to look at part of this code.
00:47.03*** join/#htc-linux LargePrime (~LargePrim@108.100.222.13)
01:00.54*** join/#htc-linux mitsutaka (~mitsutaka@123.116.126.56)
01:03.46snadgethis is gonna sound weird and offtopic.. but jonpry gave some advice about the EGL hacks
01:04.05snadgewhich is great, we have a limited form of acceleration working on vision.. boot animation etc
01:04.36snadgebut why would angry birds just hang on a black screen
01:04.47snadgebut pocket minecraft, appear to work fine
01:12.46*** join/#htc-linux hardwalker (~hardwalke@122-117-115-146.HINET-IP.hinet.net)
01:45.29*** join/#htc-linux AstainHellbring (~AstainHel@unaffiliated/astainhellbring)
01:48.55*** join/#htc-linux d3tul3 (~detule@unaffiliated/d3tul3)
01:49.35*** join/#htc-linux asnos (~Tob@unaffiliated/asnos)
02:01.06toastcfhjonpry, good job!
02:12.05*** join/#htc-linux rpierce99 (~rpierce99@96-42-102-103.dhcp.stcd.mn.charter.com)
02:18.53*** join/#htc-linux mitsutaka (~mitsutaka@219.143.36.82)
02:21.12snadgeyeah totally
02:31.17*** join/#htc-linux WisTilt2 (~wisgreg@wireless248.wirelesstcp.net)
02:35.22*** join/#htc-linux detule (~detule@unaffiliated/d3tul3)
02:57.52*** join/#htc-linux ftoz (~root@cst-prg-52-3.cust.vodafone.cz)
03:03.13jonprysnadge, what did you do?
03:03.30jonpryWisTilt2, you do memcopy?
03:05.04WisTilt2hey jonpry, yeah memcpy to smi.  working but looks like you're right we need to tile this stuff.
03:05.38jonpryfor speed?
03:05.51WisTilt2background image is there now along with icons but lots of horizontal lsd noise throughout in small  lines
03:06.22WisTilt2yes figured smi would make up for memcpy speed.  hard to test until i get these lines off the screen
03:06.34jonprymemcpy should work without noise
03:06.43jonprybut be slow
03:07.10WisTilt2it does but something in the do_blit is causing it with the tiling so that needs mods im sure
03:07.47WisTilt2do i need to disable mdp irq during each memcpy?
03:08.35jonpryprobably not. not sure how you are doing this memcpy though. probably much easier to just do it in userland
03:09.13snadgeive gone back to CM7.2 rc0 kang.. because i appreciate having a fully working phone ;)
03:09.38WisTilt2im a kernel guy:) if you want to mod userland im ok with that and can move onto other things
03:09.47snadgebut if i was working on ics at the moment.. i'd probably try to fix the EGL hacks
03:10.19snadgeor at least try and figure out why angry birds wont display the splash screen
03:10.30snadgeor continue past that.. just black screen.. can press home to go back to desktop
03:10.57jonprynothing in logcat?
03:11.12jonprywhat did you do to ics? external texture == texture 2d?
03:11.32snadgeyeah thats the one
03:11.53jonprythere is stuff in eglutils.cpp that does not work right
03:12.14snadgeand i put the if(something || something) return 0; hack in that you suggested
03:12.31jonprysometimes it sets up software context when you think it isn't
03:12.33snadgei cant remember where that was.. i promised myself i wouldn't actually start devving this again ;)
03:12.50jonpryframebuffer.cpp
03:12.59jonpry:p
03:13.04snadgeok that does it
03:13.43WisTilt2jonpry: lot more to this but this is where memcpy to smi happens -> http://pastebin.com/NADgbFhQ
03:14.09snadgejonpry: do you have a secret observable repo where i can observe these egl hacks? ;)
03:14.24snadgeor a .diff hehe
03:14.53jonprywell i have a diff. but its in a really non workable state
03:15.14snadgeso its a cherry pick job.. or because code speaks more than a thousand words hehe
03:16.04jonpryi just haven't worked on it much since i started trying to get composition working on gingerbread first
03:16.26jonprylast thing i had rendered a big black screen
03:16.46jonpryand before that i had colored quads where the launcher should be
03:17.26jonpryif you look at cm gingerbread eglultils.cpp there is the #ifdef NO_RGBX_8888 stuff that is not in ics
03:18.10jonprythe stuff in the ifdef makes it work right because lots of gles blobs don't really define the native windows format enumeration they are trying to use
03:20.50jonpryWisTilt2, question is what is the   *start = asma->file;
03:21.18jonpryif its a pointer to userland then this won't work right
03:22.10WisTilt2that is the pointer to where the src img is in ashmem.  it is right, i have all the graphics now and no errors from mdp anymore
03:22.49WisTilt2sliding between desktops is only slightly slower than when this is in pmem so something is working
03:22.59jonpryso say that its a pointer to something from 0 - 0xc000-0000
03:23.57jonprythen if process calling the ioctl is currently scheduled. the right data will be copied. if something else is scheduled. no right data
03:24.49jonprythis is usually handled with copy_from_user()
03:25.15jonprymight be able to just use that function instead of memcpy
03:26.12snadgejonpry: ahh interesting.. the boss just got back from overseas.. so i'll make note of that
03:30.02WisTilt2jonpry: here's a pointer dump from that function just for reference ->
03:30.05WisTilt2[  144.803375] get_ashmem_file: file:d7bd8a20 asma->file:d7bd8e20 start:d7a69d9c vm_start:44d64000 len:177000
03:31.24WisTilt2i can try copy_from_user.  asma->file being src from userland?
03:31.55jonprywell d7bd8e20 isn't a userland pointer
03:32.36WisTilt2most are in that range, only other i see is this ->
03:32.37WisTilt2[  144.787322] get_ashmem_file: file:c1012e20 asma->file:c1012da0 start:d7a69d9c vm_start:46ffc000 len:bc000
03:34.52jonpryvm_start is a userland pointer. but it isn't user for memcpy
03:36.34WisTilt2not using vm_start anywhere, you said its ignored or something by mdp?
03:38.01jonprycache flush after memcpy?
03:39.06WisTilt2im not, you saying that needs to be added?  thought that was handled already elsewhere
03:39.20jonpryneeds to be done
03:40.31WisTilt2maybe thats where these random horiz lines are coming from.  it only happens when you touch the screen or slide desktops.  once displayed everything looks good on screen but the lines remain where they are until touched again.
03:41.14WisTilt2they're only a few pixels high but go the entire width of the screen in diff colors
03:41.27jonpryits possible
03:44.28jonprythe comment says smi is being accessed via iomem. which afaik is non cached
03:45.55*** join/#htc-linux swc|666 (~gecko@unaffiliated/swc666/x-4934821)
03:46.06WisTilt2im using iomem yes. trying flush now and see if anything changes
03:46.32*** join/#htc-linux swc|666 (~gecko@unaffiliated/swc666/x-4934821)
03:47.19jonprynon cached isn't really ideal but it should work without artifacts
03:50.10WisTilt2these psychedelic colors spice up the screen though
03:54.42*** join/#htc-linux stroughtonsmith_ (~steven@86-44-84-29-dynamic.b-ras2.bbh.dublin.eircom.net)
03:55.03*** join/#htc-linux ftoz (~root@85.162.162.107)
03:58.23WisTilt2jonpry no difference
03:59.03*** join/#htc-linux stroughtonsmith (~steven@86-43-214-111-dynamic.b-ras2.bbh.dublin.eircom.net)
04:02.17detuleg'd evening folks
04:02.38WisTilt2hi detule
04:03.29detulesounds like you guys are getting pretty far along
04:03.46detulethat's pretty cool
04:04.57WisTilt2yeah got it blitting now but still not 100%.  im just glad to get the graphics and images on the screen now.  hopefully it can be tweaked to work right so we can get this extra 32mb memory, thats the whole goal
04:05.52detuleit's a pretty cool project regardless?.i am sure jonpry can find use for it in gposit as well
04:08.41snadgeid be tempted to ebay a TP2 as like a backup phone or something.. if this continues to make progress ;)
04:09.14snadgehey guys.. check out my winmo phone! :D ... err ICS phone
04:09.42detuleerr on top of 3.1
04:11.09detulei think jonpry has that "assorted android kernel patches" dialed in by now
04:19.44*** join/#htc-linux Rob2223 (~Miranda@p4FFF21AF.dip.t-dialin.net)
04:31.16jonprygposit doesn't use the pmem pool
04:32.08jonpryit only took me 3 hours to make that 3.1 kernel. and i never even turned on my phone :p
04:34.03jonprybut we  need to port to that clk_drv thing or its going to hit the phan
04:34.33jonprytp2's on ebay are probably like $50 now?
04:35.29snadgebargain
04:37.12snadgewell i've pilfered EGLUtil.cpp from GB.. the only dif is the #ifdef NO_RGBX_8888 stuff
04:37.25snadgeso i just have to double check thats actually being defined somewhere
04:38.15detulewhat the hell is clkdrv
04:38.41snadge*facepalm* of course it isn't.. unless you have an OMAP3 ;)
04:39.03jonprysome kind of standard kernel mechanism for dealing with clock control
04:40.34detuleclkdev?
04:41.14jonpryyes
04:41.40detulefortunately we are using Alex's clocks and he'l likely do it himself if he hasn't done it already
04:42.56jonpryurg
04:44.15detulei see he pushed 12 thousand commits to his upstream branch last week...
04:44.58jonprythats certainly impressive
04:45.07detulei can't even gitweb the branch
04:45.19jonprywho can
04:45.37jonprygitorious really sux when you actually need it to work
04:45.44snadgeso are we going to actually get drivers which support RGB8888 ?
04:45.57jonprythat isn't the real issue
04:46.01snadgeor are vendors just going to neglect that.. as per usual, except for the latest devices they're interested in
04:46.28jonprythe old code tries to choose a config based on on the native visual id thing. but all configs from our blobs are just zero
04:46.54jonpryRGBX_8888 code chooses a config based on the parameters that can actually be checked
04:55.48snadgeyeah.. i've just hacked this into the surfaceflinger makefile
04:56.02snadgeifeq ($(TARGET_BOARD_PLATFORM), msm7x30)
04:56.02snadge<PROTECTED>
04:56.03snadgeendif
04:56.11snadgeborrowed from the omap3 example ;)
04:56.38snadgei might hack the boot animation patch, to depend on that compile time flag
04:56.46snadgeinstead of being a hard coded hack
04:57.37snadgeim presuming this hack will need to stay in ICS.. not sure why they reverted it
04:57.55snadgeperhaps they optimistically assumed that everything in the universe will support RGBX 8888 natively
04:58.29snadgei'd like to know what google were thinking when they did that
04:58.52jonpryits a cm patch and hasn't been applied to the ics branch yet
04:59.29snadgesurely the same logic applies to aosp
05:00.33snadgei guess i can assume that means google arn't very interested in incorporated fixes in CM, back into aosp
05:00.46jonprythey assume people have gingerbread gles blobs
05:01.12jonpryreally has nothing to do with rgbx
05:02.24*** join/#htc-linux furtardo (~mks@nat/yahoo/x-jlpaohmisnacybvz)
05:02.32snadgeoh so these are froyo libs?
05:02.50snadgeeww
05:02.57jonprywell that is my problem
05:03.18snadgei thought the g2 came with an official version of gingerbread
05:03.25snadgeand that it would be using those libs
05:04.35snadgei dont understand why it defaults to 5 6 5 or whatever
05:04.41jonpryi dunno. this patch may or may not fix your problem. only way to tell is to patch eglutils.cpp to print out information about every config. particularly the native id thing
05:05.11snadgewell surfaceflinger gets initialised into 5 6 5 mode.. the boot animation didnt work
05:05.24snadgeunless it was hacked to support that
05:05.43snadgethats what gb/cm7 uses also
05:07.05snadgefrom memory.. it does support an RGB 888 extension
05:07.22snadgeit prints that out as a supported extension during surfaceflinger initialisation
05:07.53jonpryagain this code has nothing to do with rgbx support
05:08.04snadgeoh? then what is the meaning of the #ifdef
05:08.26jonpryit gets rid of that native visual id thing
05:08.37jonprybut i have said this like 3 times now
05:09.03jonpryfandroid went ahead and defined all the framebuffer formats as some kind of enumeration
05:09.14sykosoft(off topic, I find I like webos on the touchpad, I was really suprised by it as a platform)
05:09.28jonpryso 565 no stencil is like type 4 or something
05:09.42WisTilt2sykosoft: got the rhod the other day thanks
05:09.46jonpryand it goes through all the configs and finds a type 4
05:10.00jonprybut the blob says every  config is type 0
05:10.03sykosoftWisTilt2: I assume in working condition
05:10.11jonpryso hardware gl just doesn't happen
05:10.24snadgeahh.. i see
05:11.03WisTilt2yep, had to do the initial boot but came right up.  havent started messing with it, been tied up with this ashmem code.
05:11.23jonprysykosoft, refurb?
05:11.37sykosoftyes, one of the ebay refurbs. basically: new
05:11.55sykosoftI'm fairly impressed. I put cm7 alpha 3.5 on it
05:11.58jonpryi like webos too
05:12.11sykosoftand it works well, but I was really surprised how well though out webos is
05:12.19sykosoftmore so than iOS (I have an ipad also)
05:12.22sykosofttoo many toys
05:12.46sykosoftI must say, for a low cost android tablet, I walked into a hastings tonight, and fiddled with their nextbook tablet
05:12.47sykosoftdecent
05:14.32jonprythe apq8660 is super fast
05:15.28jonpryi guess there is some new 8664 contraption out now that wipes its ass
05:16.04jonpryer 8064
05:16.12sykosoftfor the $129, the hastings tablet was nice
05:17.20*** join/#htc-linux Rob2222 (~Miranda@p4FFF21AF.dip.t-dialin.net)
05:17.23jonpryno 99 touchpad though
05:17.29sykosoftno
05:17.32sykosoftagreed
05:17.34*** join/#htc-linux detule (~detule@unaffiliated/d3tul3)
05:17.38sykosoftdidn't mean to derail the conversation
05:17.54sykosoftthat said, I am looking forward to open sourced webos
05:18.01sykosoftI'd like to see if dalvik could be made to work on it
05:18.40jonprythere is always chroid
05:19.04detulewhat it's up to 3.5?
05:19.21sykosoftyou just made my day
05:20.01sykosoftis overclocking the tp worth it?
05:20.09sykosoftalso, battery life even in standby seems low
05:20.14sykosoft100% in about 48 hours
05:21.11jonpryi get a week or so. but its not nook like or anything
05:22.57detulejonpry i have the mic chirping 100%
05:22.59sykosoftso, overclocking worth it?
05:23.03sykosoftand man
05:23.13sykosoftthe 3.0.4 update wouldn't show up, had to doctor it
05:24.16detulethe doctor is pretty handy
05:24.37sykosoftalso, loved the contra code
05:42.44*** join/#htc-linux LargePrime (~LargePrim@108.100.222.13)
05:43.17*** join/#htc-linux kiozen (~kiozen@ppp-93-104-93-209.dynamic.mnet-online.de)
05:43.28WisTilt2jonpry: i changed it to copy from user and copied from the vm_start.  interesting thing now is no background, its black, but icons widgets, etc are all clean. no mdp errors either so out of ideas
05:43.49WisTilt2actually looks nice with black screen
05:50.09*** join/#htc-linux rpierce99 (~rpierce99@96-42-102-103.dhcp.stcd.mn.charter.com)
05:55.07arrrghhhWisTilt2, yo, how goes it.
05:56.07WisTilt2hey arrrghhh, just troubleshooting as usual
05:56.13arrrghhhhizzah
05:56.18arrrghhhDR testing as usual here :D
05:56.52WisTilt2got ashmem blitting but all kinds of artifacts
05:56.59arrrghhhhum
05:57.08WisTilt2i really want to get this 32mb some how
05:57.14arrrghhhlol
05:57.31WisTilt2i mean i have it now but have real small lines on the screen now and then
05:57.38arrrghhhstrange
06:02.49WisTilt2well im going to bed. one of my kids 30th birthday tomorrow and we're throwing a big surprise party so need sleep. im sure its going to be a late night.
06:04.10aeroevansnadge: what device are you building for?
06:06.27arrrghhhdamn, his kids turning 30...
06:07.14aeroevansnadge: since it looks like you're working on 7x30, I'm working on https://github.com/dinc2-ics which might help
06:11.54snadgeaeroevan: htc vision.. https://github.com/Andromadus/
06:12.40snadgealso #g2ics has many of the folks working on that.. instructions for where to get the local_manifest.. theres a forum and a bugtracker.. (i think)
06:12.56aeroevansnadge: which hw accel patches are you using?
06:13.28aeroevanthe one in cm9 is almost perfect, just have strange issues with animations turned on
06:14.16snadgethats actually a good question.. theres stuff all over the place
06:15.33snadgeand i have one more patch thats not comitted
06:15.39snadgewhich im about to test
06:17.05aeroevanthe NO_RGBX_8888 stuff?
06:17.22aeroevanI think that helped some for us
06:17.31aeroevanbut I don't think I pused that yet either
06:17.41aeroevan*pushed
06:18.11snadgeyeah
06:18.28snadgeit looks like frameworks base has been rebased on someone elses repo
06:18.33snadgeand the patches i put in.. are no longer relevant
06:18.52snadgehttps://github.com/Andromadus/android_frameworks_base/commits/ics
06:19.47snadgedh-harolds ace port ;)
06:32.56*** join/#htc-linux sykosoft_ (~sykosoft@67-61-60-19.cpe.cableone.net)
06:35.25*** join/#htc-linux ychavan (ychavan@nat/redhat/x-vlxwpwfcogmdcmib)
06:36.01snadgeexcept for a couple of them which i still have locally
06:39.23aeroevansnadge: do you have any strange issues with animations?
06:39.33aeroevanalso, what gpu?
06:42.53*** join/#htc-linux kiozen (~kiozen@p54BB63D6.dip.t-dialin.net)
06:47.17snadgeadreno 205
06:47.22snadgeand umm.. what kinda animations
06:48.47aeroevanlike window animations, transitions
06:49.09snadgeno.. the rotation works as an example
06:49.18snadgethats about all that comes to mind though
07:04.28*** join/#htc-linux NeoMatrixJR_away (~chatzilla@173-20-63-62.client.mchsi.com)
07:18.51*** join/#htc-linux dobrin (~dobrin@85.91.150.26)
07:28.14*** join/#htc-linux lamikr (lamikr@nat/nokia/x-hkcjjvctjviezqna)
08:23.13snadgeok well i finally booted up my new build.. and angry birds still just blackscreens ;)
08:23.18snadgeand occasionally i get force closes in trebuchet
08:28.21*** join/#htc-linux NeoMatrixJR_away (~chatzilla@173-20-63-62.client.mchsi.com)
09:28.04*** join/#htc-linux balans2 (~user@82-170-217-205.ip.telfort.nl)
09:42.12*** join/#htc-linux rajkosto (~rajkosto@2001:470:d76b:da7a:61f6:58dd:4634:91df)
10:09.06*** join/#htc-linux furtardo (~mks@nat/yahoo/x-ilnqarhucqcqnnql)
10:32.34*** join/#htc-linux LjL (~ljl@unaffiliated/ljl)
10:42.24*** join/#htc-linux arif-ali (~arif-ali@ip-81-23-53-226.ask4internet.com)
11:05.03*** join/#htc-linux LjL (~ljl@unaffiliated/ljl)
11:14.38*** join/#htc-linux lardman (~lardman@Maemo/community/contributor/lardman)
11:35.29*** join/#htc-linux MethoS- (~clemens@134.102.106.250)
11:37.12snadgeE/guardedRun( 2375): java.lang.RuntimeException: eglSwapBuffers failed: EGL_BAD_ALLOC
11:37.13snadgeE/guardedRun( 2375): at com.rovio.ka3d.GLSurfaceView$EglHelper.throwEglException(GLSurfaceView.java:1082)
11:37.13snadgeE/guardedRun( 2375): at com.rovio.ka3d.GLSurfaceView$EglHelper.swap(GLSurfaceView.java:1040)
11:37.13snadgeE/guardedRun( 2375): at com.rovio.ka3d.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1347)
11:37.13snadgeE/guardedRun( 2375): at com.rovio.ka3d.GLSurfaceView$GLThread.run(GLSurfaceView.java:1121)
11:39.06snadgelame :/
12:27.32*** join/#htc-linux detule (~detule@unaffiliated/d3tul3)
12:37.02*** join/#htc-linux mickey|ICE722 (~M@tmo-103-4.customers.d1-online.com)
12:40.45*** part/#htc-linux mickey|ICE722 (~M@tmo-103-4.customers.d1-online.com)
12:58.55*** join/#htc-linux detule (~detule@unaffiliated/d3tul3)
13:20.02*** join/#htc-linux balans2 (~user@82-170-217-205.ip.telfort.nl)
13:37.37*** join/#htc-linux ftoz (~root@cst-prg-45-0.cust.vodafone.cz)
13:43.54*** join/#htc-linux NeoMatrixJR_away (~chatzilla@173-20-63-62.client.mchsi.com)
14:09.11*** join/#htc-linux mgross029 (c0234f46@gateway/web/freenode/ip.192.35.79.70)
14:09.46*** join/#htc-linux helicopter88 (~helicopte@host126-113-dynamic.26-79-r.retail.telecomitalia.it)
14:09.47*** join/#htc-linux newbie1 (~helicopte@host126-113-dynamic.26-79-r.retail.telecomitalia.it)
14:15.09*** join/#htc-linux surge (surge@pool-72-88-82-28.bflony.fios.verizon.net)
14:32.05*** join/#htc-linux balans2 (~user@82-170-217-205.ip.telfort.nl)
14:42.39*** join/#htc-linux NYL (~NYL@109.96.55.58)
14:48.47*** join/#htc-linux |Jeroen| (~jeroen@d5152B25B.access.telenet.be)
14:58.01*** join/#htc-linux rpierce99 (~rpierce99@96-42-102-103.dhcp.stcd.mn.charter.com)
15:00.46*** join/#htc-linux marc1706 (~Marc@phpbb/modifications/marc1706)
15:02.39*** part/#htc-linux detule (~detule@unaffiliated/d3tul3)
15:05.12*** join/#htc-linux detule (~detule@unaffiliated/d3tul3)
15:09.11*** join/#htc-linux emwe (~mweirauch@cable-86-56-10-252.cust.telecolumbus.net)
15:23.50*** join/#htc-linux balans2 (~user@82-170-217-205.ip.telfort.nl)
15:35.50*** join/#htc-linux NYL_ (~NYL@109.96.55.58)
15:36.49*** join/#htc-linux NYL__ (~NYL@109.96.55.58)
15:40.25*** join/#htc-linux NYL (~NYL@109.96.55.58)
15:57.50*** join/#htc-linux LordDeath (~LordDeath@cable-81-173-164-253.netcologne.de)
16:05.55*** join/#htc-linux detule (~detule@unaffiliated/d3tul3)
16:15.59*** join/#htc-linux Cotulla (~myfakemai@nat100-255-205-109.tvoe.tv)
16:16.06Cotullahi
16:22.41*** join/#htc-linux AstainHellbring (~AstainHel@unaffiliated/astainhellbring)
16:31.52*** join/#htc-linux asnos_ausente (~Tob@unaffiliated/asnos)
16:39.36*** join/#htc-linux bartman (~bart@2607:f2c0:a000:175:2e0:81ff:fe47:3d01)
16:49.30*** join/#htc-linux arif-ali (~arif-ali@ip-81-23-53-226.ask4internet.com)
16:53.28*** join/#htc-linux NeoMatrixJR_away (~chatzilla@173-20-63-62.client.mchsi.com)
17:00.11*** join/#htc-linux toer (~tore@179.81-166-86.customer.lyse.net)
17:02.14*** join/#htc-linux rob_w (~bob@ppp-188-174-14-168.dynamic.mnet-online.de)
17:02.15*** join/#htc-linux rob_w (~bob@unaffiliated/rob-w/x-1112029)
17:07.45*** join/#htc-linux NeoMatrixJR_away (~chatzilla@173-20-63-62.client.mchsi.com)
17:08.35*** join/#htc-linux WisTilt2 (~wisgreg@wireless251.wirelesstcp.net)
17:09.09WisTilt2detule you around?
17:09.59*** part/#htc-linux detule (~detule@unaffiliated/d3tul3)
17:10.05*** join/#htc-linux detule (~detule@unaffiliated/d3tul3)
17:10.36detuleyeah what's up WisTilt2
17:10.56WisTilt2hey i found another audio bug to fix
17:11.42detuleoh no
17:11.44WisTilt2if you receive a call but dont answer, it will leave rear speaker on and no incall audio works until reboot.
17:12.07detulenothing in logcat?
17:12.10WisTilt2dont know if its only a .39 issue. just happened to me this morning so thought i'd ask if you've seen that
17:12.31detulesometimes audio poops out entirely
17:12.32WisTilt2i rebooted right away, needed to call them back so no log
17:12.50mgross029WisTilt2: I've see that in other kernels with acoustics.  You're volume control gets stuck on in-call right?
17:13.05detuleit's pretty sporadic, but when it does happen there is this "obtainBuffer failed" message in logcat
17:13.40WisTilt2mgross029 didnt try volume control but when you see this happen do you ever get audio again without reboot?
17:14.34WisTilt2detule sounds like this might be a userland side issue then
17:14.42mgross029detule: Yep that's what I've seen before the obtainBuffer.  I'll see if I have a log with it in there.
17:15.03mgross029WisTilt2: No audio until reboot correct.
17:15.33WisTilt2yep.  i tried calling out and dead silent.  didnt try playing any sounds or anything but incall was dead both ways
17:16.34WisTilt2speakerphone power amp was still on and i could hear it buzzing so it didnt get shutdown after the missed call either
17:17.59detulethat obtainBuffer message, smarter minds than me need to look at it?.from what i've read it could actually be a failure on the kernel side somehow
17:18.01*** join/#htc-linux ali1234 (~ajbuxton@robotfuzz.co.uk)
17:18.25*** join/#htc-linux NeoMatrixJR_away (~chatzilla@173-20-63-62.client.mchsi.com)
17:18.36*** join/#htc-linux arif-ali (~arif-ali@ip-81-23-53-226.ask4internet.com)
17:20.12mgross029The only other way I've been able to get around this problem is to kill the audiomanager pid
17:20.42mgross029W/AudioTrack( 1380): obtainBuffer timed out (is the CPU pegged?) 0x4d4d68 user=000012c0, server=00000960
17:20.59mgross029That is from logcat when the problem has occurred.
17:22.13*** join/#htc-linux xawen (~Admin@pool-98-117-32-71.bltmmd.fios.verizon.net)
17:22.58mgross029http://forum.cyanogenmod.com/topic/3934-obtainbuffer-timed-out-is-the-cpu-pegged-aka-the-i-didnt-wake-up-bug/
17:23.24mgross029I found this when I had been searching for the problem.
17:24.05mgross029I put this patch into .35 and Don't think I saw the problem after that.  http://code.google.com/p/cyanogenmod/issues/detail?id=1385#c213
17:24.28mgross029Of course it really doesn't make much sense becuase camera isn't even enabled in .35
17:25.14detuleno it doesn't make sense
17:27.14mgross029My last logcat with that error was from 11/22 and I believe that was around when I put the patch into my local .35 repo.
17:27.20Cotulla<PROTECTED>
17:27.28Cotullalol wrong window :)
17:31.47*** join/#htc-linux GNUtoo (~gnutoo@2001:4dd0:ff00:809d:1e4b:d6ff:fea6:7506)
17:32.08*** join/#htc-linux toer (~tore@179.81-166-86.customer.lyse.net)
17:34.45*** join/#htc-linux ali1234 (~ajbuxton@robotfuzz.co.uk)
17:42.36*** join/#htc-linux mitsutaka (~mitsutaka@123.116.126.56)
17:44.05*** join/#htc-linux mickey|FSOSHRCON (~M@2001:4dd0:ff00:809d:216:d3ff:fe29:7a49)
17:44.11aeroevansnadge: https://github.com/dinc2-ics/android_frameworks_base/commit/38744c0801104e620589be9a84457707f3585b73
17:52.20*** join/#htc-linux balans2 (~user@82-170-217-205.ip.telfort.nl)
18:02.09*** join/#htc-linux mitsutak_ (~mitsutaka@123.116.126.56)
18:05.28*** part/#htc-linux mickey|FSOSHRCON (~M@2001:4dd0:ff00:809d:216:d3ff:fe29:7a49)
18:28.26*** join/#htc-linux leviathan (~quassel@2001:470:26:484:6ef0:49ff:fee6:8dca)
18:36.27*** join/#htc-linux dobrin (~dobrin@85.91.150.26)
18:39.43*** join/#htc-linux rpierce99_ (~rpierce99@96-42-102-103.dhcp.stcd.mn.charter.com)
18:41.30*** join/#htc-linux mitsutaka (~mitsutaka@123.116.126.56)
18:41.35*** join/#htc-linux AstainHellbring (~AstainHel@unaffiliated/astainhellbring)
18:48.26*** join/#htc-linux rpierce99 (~rpierce99@96-42-102-103.dhcp.stcd.mn.charter.com)
18:51.53*** join/#htc-linux a262564 (~a262564@96-42-102-103.dhcp.stcd.mn.charter.com)
18:52.08*** part/#htc-linux a262564 (~a262564@96-42-102-103.dhcp.stcd.mn.charter.com)
18:52.23*** part/#htc-linux rpierce99 (~rpierce99@96-42-102-103.dhcp.stcd.mn.charter.com)
18:53.30*** join/#htc-linux rpierce99 (~rpierce99@96-42-102-103.dhcp.stcd.mn.charter.com)
19:05.02*** join/#htc-linux rpierce99 (~rpierce99@96-42-102-103.dhcp.stcd.mn.charter.com)
19:18.20*** join/#htc-linux randomness (~Admin@pool-98-117-32-71.bltmmd.fios.verizon.net)
19:28.18*** join/#htc-linux LargePrime (~LargePrim@d47-69-74-57.col.wideopenwest.com)
19:58.48*** join/#htc-linux x1o (57f54144@gateway/web/freenode/ip.87.245.65.68)
19:59.28*** part/#htc-linux x1o (57f54144@gateway/web/freenode/ip.87.245.65.68)
20:04.51*** join/#htc-linux gauner1986 (~Adium@c228055.adsl.hansenet.de)
20:05.16*** join/#htc-linux ali1234 (~ajbuxton@robotfuzz.co.uk)
20:05.19*** join/#htc-linux MN-- (~yaaic@5e0fb796.bb.sky.com)
20:19.52*** part/#htc-linux Cotulla (~myfakemai@nat100-255-205-109.tvoe.tv)
20:33.59*** join/#htc-linux balans2 (~user@82-170-217-205.ip.telfort.nl)
20:42.31*** join/#htc-linux LordDeath (~LordDeath@cable-81-173-164-253.netcologne.de)
21:04.19*** join/#htc-linux mickey|linuxhote (~M@2001:4dd0:ff00:809d:216:d3ff:fe29:7a49)
21:07.24*** join/#htc-linux rajkosto (~rajkosto@2001:470:d76b:da7a:5819:b88f:8af5:7b3e)
21:52.12*** join/#htc-linux swc|666 (~gecko@unaffiliated/swc666/x-4934821)
22:00.11*** join/#htc-linux Cass (~Cass@188-220-34-222.zone11.bethere.co.uk)
22:41.31*** join/#htc-linux gauner1986 (~Adium@c228055.adsl.hansenet.de)
22:56.42*** join/#htc-linux asnos (~Tob@unaffiliated/asnos)
23:15.33*** join/#htc-linux GNUtoo (~gnutoo@2001:4dd0:ff00:809d:1e4b:d6ff:fea6:7506)
23:16.58*** join/#htc-linux AstainHellbring (AstainHell@unaffiliated/astainhellbring)

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.