Page 1 of 3

[App] Seek Movie Player patch

Posted: Fri Jan 31, 2014 11:35 pm
by sectroyer
Hello.
This is working (at least for me ;)) patch for C series that changes the seek time for KEY_UP, KEY_DOWN and KEY_LEFT/KEY_RIGHT. The last one has to be the same for both keys. TV uses positive value (10 seconds by default) for KEY_RIGHT and negative value (-10 seconds by default) for KEY_LEFT. It is possible to add different intervals for these two keys but requires putting additional code in exeDSP and current version is more then enough for me.

Update: Seek values removed (you just simply pass new values and patch will set them :D), changed patch to dynamic and added speed up improvements :)

New version please test :)

Re: [App] Seek Movie Player patch

Posted: Sat Feb 01, 2014 11:38 am
by greenhorn
Nice! Thank you!

Re: [App] Seek Movie Player patch

Posted: Sat Feb 01, 2014 1:04 pm
by juusso
Cool, don`t stop coding! :)

Re: [App] Seek Movie Player patch

Posted: Sat Feb 01, 2014 1:48 pm
by Mkò
Thanks nice work!

Re: [App] Seek Movie Player patch

Posted: Sat Feb 01, 2014 4:01 pm
by sectroyer
Glad you like it. But If you would also post you TV model and firmware version it would be helpful. BTW you may check if this works on D series ;)

Re: [App] Seek Movie Player patch

Posted: Wed Feb 05, 2014 2:17 pm
by mmhorda
sectroyer wrote:Glad you like it. But If you would also post you TV model and firmware version it would be helpful. BTW you may check if this works on D series ;)
Hi.
Whiling to try but an instruction for the patch would be appreciated. :)
How do we change the values after patch is applied?
is it possible to revert everything back?

what is your TV and firmware version by the way?
Thank you in advance.

Re: [App] Seek Movie Player patch

Posted: Wed Feb 05, 2014 3:34 pm
by sectroyer
Simly running this:

Code: Select all

./seekpatch -n exeDSP --up 60 --down 60 --left-right 30 -d
Will change KEY_UP and KEY_DOWN times to 60s (originally it is plus "infinity" and minus "infinity") and 30 seconds for both left and right keys (-d will display useful debug information). After the reboot the patch will go away :)
I tried it on C650 FW 3008 :)

Re: [App] Seek Movie Player patch

Posted: Wed Feb 05, 2014 9:25 pm
by greenhorn
Great!

Code: Select all

# ./seekpatch -n exeDSP --up 60 --down 60 --left-right 30 -d
pc=42a64158 lr=42a67928 sp=be9408e0 fp=be940934
r0=fffffe00 r1=0
r2=1 r3=0
symbol: CRYPTHW_SetIV -> @0x016a2814
Found KEY_DOWN at @0x0162bfec
Found KEY_UP at @0x0162bfe8
Found KEY_LEFT/KEY_RIGHT at @0x0162a468
Finished scanning for addresses
Patching KEY_UP value at address: @0x0162bfe8 with value: 60
Patching KEY_DOWN value at address: @0x0162bfec with value: 60
Patching KEY_LEFT/KEY_RIGHT value at address: @0x0162a468 with value: 30
Patching completed!

Re: [App] Seek Movie Player patch

Posted: Fri Feb 07, 2014 10:44 am
by sectroyer
App updated. Link in the first post points to newer version. You should notice significant speed improvement :) Please test and report if this version works for everyone?

Re: [App] Seek Movie Player patch

Posted: Fri Feb 07, 2014 7:37 pm
by greenhorn
All is OK with the latest update.