Re: Discussion on CM9 for Allwinner A8 Scroll Extreme

Discuss the Scroll EXTREME Tablet here.

Re: Discussion on CM9 for Allwinner A8 Scroll Extreme

Postby rsocon » May 23rd, 2012, 2:26 pm

A new build has been up-loaded that fixes the lack of audio via HDMI.

Piers, so does your HDMI output full screen on video? Which app are you using? so I can try mine again, cheers.
rsocon
Scroll Apprentice
Scroll Apprentice
 
Posts: 42
Joined: April 9th, 2012, 12:53 pm

Re: Discussion on CM9 for Allwinner A8 Scroll Extreme

Postby Johnny » May 23rd, 2012, 3:23 pm

Is update me working now or do you still have to use CWM?
User avatar
Johnny
Serious Scroller
Serious Scroller
 
Posts: 121
Joined: January 20th, 2012, 3:04 pm
Scroll Version: Extreme running CM9, Google Nexus 7 running Modaco Custom ROM

Re: Discussion on CM9 for Allwinner A8 Scroll Extreme

Postby rsocon » May 23rd, 2012, 3:40 pm

The first few posts on SlateDroid seem to imply that wifi isn't working so might want to hold off upgrading.

Also I could be wrong but Update Me is only to let you know there's an update and to download the zip file.

I'm not aware of any app which does the whole thing automatically, apart from the clockwork mod app, which isn't compatible with the tablet, and even then all it does is re-boot and run the update zip it self.

I could be wrong however, but all updates I've ever run on any device have always been from a recovery zip.
rsocon
Scroll Apprentice
Scroll Apprentice
 
Posts: 42
Joined: April 9th, 2012, 12:53 pm

Re: Discussion on CM9 for Allwinner A8 Scroll Extreme

Postby Piers » May 23rd, 2012, 4:27 pm

The UpdateMe part of the firmware should be working soon, Christian has just got hosting for it.
Cheers,

Piers
Piers
Scroll Addict
Scroll Addict
 
Posts: 200
Joined: May 22nd, 2012, 1:48 pm
Scroll Version: Essential / ICS 4.0.4 Suggsy
Extreme / ICS/CM9 4.0.4 Christian Troy

Re: Discussion on CM9 for Allwinner A8 Scroll Extreme

Postby Johnny » May 24th, 2012, 11:14 pm

Got 2883 on latest CM9 nightly. Was using 0.8 earlier but and seemed good.

Sent from my Scroll Extreme using Tapatalk
User avatar
Johnny
Serious Scroller
Serious Scroller
 
Posts: 121
Joined: January 20th, 2012, 3:04 pm
Scroll Version: Extreme running CM9, Google Nexus 7 running Modaco Custom ROM

Re: Discussion on CM9 for Allwinner A8 Scroll Extreme

Postby Sprat » May 29th, 2012, 7:10 am

I've just installed the cm9_nightly_20120529 but I'm having an issue which is preventing me from using my Extreme.

This may have something to do with my newbie ignorance and not the ROM:
I can't see or install a file manger. I've gone to Google Play via the browser, chosen a file manager, it states it will be installed shortly, it then states (on Google Play's website) that it has been installed (it also shows the other apps I've downloaded to the stock ROM as being still installed) but when I look in the app section on the Extreme it's not there.

Am I showing my true greeness here? Last time, with the stock ROM, I simply downloaded the Google Play app from a 3rd party site and used the stock's file manger to install it. Right now, I don't have a file manger to install anything and nothing seems to be installing via Google Play in the browser.

Am I missing something here? Thanks and hope you can help.

P.S. Should I have started a new thread? Apologies in advance if I should have. I just thought it was relevant.
P.P.S. The 3 little dot icon button on the taskbar is no longer there. Is that normal?
User avatar
Sprat
Junior Scroller
Junior Scroller
 
Posts: 16
Joined: May 28th, 2012, 1:24 pm

Re: Discussion on CM9 for Allwinner A8 Scroll Extreme

Postby Johnny » June 1st, 2012, 7:28 am

The guy who does the CM9 build thinks he has fixed the flash/iplayer video going bad after a short time problem.

I have asked him what he did to fix. Hopefully he will share the info then Suggsy can apply it to his build.

Edit: Suggsy, this is what Christian says, not sure if its is specific to CM9:

Johnny: i saw in logcat that the problem was due to a buffer into stagefright's ACodec.cpp, sometimes it tried to copy a buffer bigger then its capacity... since my programming skills are limited i've tried to do something like that (it should work if you suffer from the same problem... you'll see easily that in logcat)

--- a/media/libstagefright/ACodec.cpp
+++ b/media/libstagefright/ACodec.cpp
@@ -1819,8 +1819,12 @@ void ACodec::BaseState::onInputBufferFilled(const sp<AMessage> &msg) {
mCodec->mComponentName.c_str());
}

- CHECK_LE(buffer->size(), info->mData->capacity());
- memcpy(info->mData->data(), buffer->data(), buffer->size());
+ //CHECK_LE(buffer->size(), info->mData->capacity());
+ //memcpy(info->mData->data(), buffer->data(), buffer->size());
+ if (buffer->size() > info->mData->capacity())
+ memcpy(info->mData->data(), buffer->data(), info->mData->capacity());
+ else
+ memcpy(info->mData->data(), buffer->data(), buffer->size());
}

if (flags & OMX_BUFFERFLAG_CODECCONFIG) {



Edit2: Somebody else has confirmed this sorts flash video problems, so if Suggsy could incorporate this it would be great :)
User avatar
Johnny
Serious Scroller
Serious Scroller
 
Posts: 121
Joined: January 20th, 2012, 3:04 pm
Scroll Version: Extreme running CM9, Google Nexus 7 running Modaco Custom ROM

Re: Discussion on CM9 for Allwinner A8 Scroll Extreme

Postby suggsy89 » June 1st, 2012, 10:56 am

Which module has been modified? libstagefright i assume?
I dont think I can use the module because it has been built for CM9.
I will try tonight though.
If i was building from source it would be easy just to make that change, then re-compile, but im not using source..
Maybe its time to move to CM9 :lol:

Edit: I WILL make this work.. Just remembered... (.ko for Kernel) (.so for Software)
User avatar
suggsy89
Trusted Developer
Trusted Developer
 
Posts: 971
Joined: June 28th, 2011, 4:33 pm
Real Name: John
Scroll Version: Scroll Excel - Jellybean 4.1.2
Yarvik Go Zetta - Scroll Extreme Jellybean 4.1.1

Re: Discussion on CM9 for Allwinner A8 Scroll Extreme

Postby Johnny » June 1st, 2012, 11:15 am

Go for it Suggsy! You can do it! :D
User avatar
Johnny
Serious Scroller
Serious Scroller
 
Posts: 121
Joined: January 20th, 2012, 3:04 pm
Scroll Version: Extreme running CM9, Google Nexus 7 running Modaco Custom ROM

Re: Discussion on CM9 for Allwinner A8 Scroll Extreme

Postby suggsy89 » June 1st, 2012, 11:35 am

Johnny, are you running CM9 at the moment?

I just tried the new libs Christian built in my ROM, BBC Iplayer seems to be working perfectly now ;)

Higher FPS in Stability Test too :) 40fps on average rather than 25 lol

Quadrant.. Not good... but we are getting there now thanks to Christian
User avatar
suggsy89
Trusted Developer
Trusted Developer
 
Posts: 971
Joined: June 28th, 2011, 4:33 pm
Real Name: John
Scroll Version: Scroll Excel - Jellybean 4.1.2
Yarvik Go Zetta - Scroll Extreme Jellybean 4.1.1

PreviousNext

Return to Scroll EXTREME - General Discussions

Who is online

Users browsing this forum: No registered users and 1 guest

cron