Re: Freerunner can now play Ogg video

2010-01-19 Thread Timo Juhani Lindfors
Sebastian Reichel elektra...@gmail.com writes:
 I was talking about putting the tremor mplayer into pkg-fso.

Ah yes, that is surely useful. And if it is already heading unstable I
think pkg-fso would be nice way get some testing done before it hits
unstable. Assuming of course that you have the extra time to prepare
the package.





___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-19 Thread Timo Juhani Lindfors
c_c cchan...@yahoo.com writes:
   I'm using timo's .29 faster kernel. I had the gsm not registering with
 this kernel using fso-abyss. Somehow, in my case (though I've has #1024 and
 buzz fix applied) using gsm0710muxd always works.

Abyss developers (Mickey?) might want to see strace of fso-abyss. I do
not know a clean way to capture it however. I would replace abyss with
a wrapper shell script that'll use strace to capture everything abyss
does:

1) mv /usr/sbin/fso-abyss /usr/sbin/fso-abyss.real
2) cat  /usr/sbin/fso-abyss  EOF
#!/bin/sh
strace -o /tmp/abyss.strace -s4096 -f -tt /usr/sbin/fso-abyss.real $@
EOF
3) chmod a+x /usr/sbin/fso-abyss
4) reboot
5) try to use GSM
6) mv /usr/sbin/fso-abyss.real /usr/sbin/fso-abyss
7) put /tmp/abyss.strace online (note that it can contain your PIN
code, names and numbers of contacts and even SMS)

If somebody knows an easier way, let me know :-)


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-19 Thread Sebastian Reichel
On Tue, Jan 19, 2010 at 10:25:46AM +0200, Timo Juhani Lindfors wrote:
 Sebastian Reichel elektra...@gmail.com writes:
  I was talking about putting the tremor mplayer into pkg-fso.
 
 Ah yes, that is surely useful. And if it is already heading unstable I
 think pkg-fso would be nice way get some testing done before it hits
 unstable. Assuming of course that you have the extra time to prepare
 the package.

A rebuild from git.debian.org should be enough :)

-- Sebastian


signature.asc
Description: Digital signature
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-19 Thread Neil Jerram
2010/1/19 c_c cchan...@yahoo.com:

 Hi,
  I'm using timo's .29 faster kernel. I had the gsm not registering with
 this kernel using fso-abyss. Somehow, in my case (though I've has #1024 and
 buzz fix applied) using gsm0710muxd always works.

That is consistent with my experience.  I haven't yet tried switching
to fso-abyss, and I've never (as far as I can remember) had the GSM
not registering problem.

Regards,
 Neil

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-19 Thread arne anka
   I'm using timo's .29 faster kernel. I had the gsm not registering with
 this kernel using fso-abyss. Somehow, in my case (though I've has #1024  
 and
 buzz fix applied) using gsm0710muxd always works.
   fso-abyss is very temperamental - but sometimes starts working all of a
 sudden.

no such problem here, both with timo's kernel and fso-abyss.
could it be that you suffer from to short a dbus timeout?


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-18 Thread Radek Polak
Timo Juhani Lindfors wrote:

 With mplayer from debian unstable videos created with
 
 ffmpeg2theora -x 320 -y 240 --videoquality 3 --speedlevel 2 --audioquality
  3 --samplerate 22050
 
 do not play smoothly even with -nosound.

Same here. I think my video had lower bitrate and fps, i appended

-V 300 -F 15

and it plays ok now. Maybe my test ogv had different audio codec (accidentally 
deleted it). IIRC debian mplayer uses floating point implementation for 
decoding ogg so it's crappy. But after compiling with integer only ogg decoder 
it should be ok. I'll have to try it.
 
 I am using andy-tracking a3587e4ed77974ad with DEBUG and PREEMPT
 disabled with Xorg and xserver-xorg-video-fbdev -- are you perhaps
 using xserver-xorg-video-glamo instead?

No, for sure it was fbdev.

Regards

Radek

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-18 Thread Sebastian Reichel
On Mon, Jan 18, 2010 at 04:20:20PM +0100, Radek Polak wrote:
 Timo Juhani Lindfors wrote:
 
  With mplayer from debian unstable videos created with
  
  ffmpeg2theora -x 320 -y 240 --videoquality 3 --speedlevel 2 --audioquality
   3 --samplerate 22050
  
  do not play smoothly even with -nosound.
 
 Same here. I think my video had lower bitrate and fps, i appended
 
 -V 300 -F 15
 
 and it plays ok now. Maybe my test ogv had different audio codec 
 (accidentally 
 deleted it). IIRC debian mplayer uses floating point implementation for 
 decoding ogg so it's crappy. But after compiling with integer only ogg 
 decoder 
 it should be ok. I'll have to try it.

It should be fixed once mplayer package gets updated in the debian
repository:

http://git.debian.org/?p=pkg-multimedia/mplayer.git;a=commit;h=8fcfbe13ebdb72868c090b0d7051771aaa6fbb60

Do you want me to put an updated package into pkg-fso?

-- Sebastian


signature.asc
Description: Digital signature
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-18 Thread Timo Juhani Lindfors
Radek Polak pson...@seznam.cz writes:
 ffmpeg2theora -x 320 -y 240 --videoquality 3 --speedlevel 2 --audioquality
  3 --samplerate 22050
 Same here. I think my video had lower bitrate and fps, i appended

 -V 300 -F 15

After this vmstat 10 shows:

procs ---memory-- ---swap-- -io -system-- cpu
 r  b   swpd   free   buff  cache   si   sobibo   in   cs us sy id wa
 1  0   1848   3644   7808  6767200 2 0  323  316 69  4 27  0
 1  0   1848   3644   7808  6767200 0 0  323  315 71  5 24  0
 2  0   1848   3484   7816  6767200 0 2  326  323 75  4 21  0
 1  0   1848   3616   7824  6767200 0 2  336  323 79  4 17  0
 1  0   1848   3616   7824  6767200 0 0  324  319 71  4 25  0
 2  0   1848   3616   7824  6767200 0 0  324  313 69  4 27  0
 2  0   1848   3616   7824  6767200 0 0  323  314 72  4 24  0
 0  0   1848  11864   7824  6752000 0 0  354  320 56  5 40  0

and with -nosound:

procs ---memory-- ---swap-- -io -system-- cpu
 r  b   swpd   free   buff  cache   si   sobibo   in   cs us sy id wa
 1  0   1864   2840   7816  6910800 0 0  505  371 66  3 31  0
 2  0   1864   2840   7816  6910800 0 0  302  313 64  1 35  0
 2  0   1864   2840   7816  6910800 0 0  302  315 66  1 34  0
 2  0   1864   2840   7816  6910800 0 0  302  321 65  1 33  0
 2  0   1864   2804   7832  6910800 0 3  305  330 68  3 30  0
 1  0   1864   2812   7832  6910800 0 0  302  322 64  1 35  0
 1  0   1864   2812   7832  6910800 0 0  310  318 66  2 33  0
 1  0   1864   2812   7832  6910800 0 0  302  318 54  1 45  0
 1  0   1864   2812   7832  6910800 0 0  302  324 53  1 45  0
 0  0   1864   2812   7832  6910800 0 0  302  317 52  1 47  0
 0  0   1864   2812   7832  6910800 0 0  302  322 55  1 45  0

Do you get roughly same id (idle) and cs (context switch) readings?

-Timo

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-18 Thread Radek Polak
Sebastian Reichel wrote:

 It should be fixed once mplayer package gets updated in the debian
 repository:
 
 http://git.debian.org/?p=pkg-multimedia/mplayer.git;a=commit;h=8fcfbe13ebdb
 72868c090b0d7051771aaa6fbb60

Nice!
 
 Do you want me to put an updated package into pkg-fso?

I am still using self-compiled glamo-based mplayer in QtMoko, but it might be 
useful for other users. If it's not diffucult to add such package it would be 
nice.

Regards

Radek

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-18 Thread Radek Polak
Timo Juhani Lindfors wrote:

 and with -nosound:
 
 procs ---memory-- ---swap-- -io -system--
  cpu r  b   swpd   free   buff  cache   si   sobibo   in  
  cs us sy id wa 1  0   1864   2840   7816  6910800 0 0  505
   371 66  3 31  0 2  0   1864   2840   7816  6910800 0 0 

 Do you get roughly same id (idle) and cs (context switch) readings?

I am now on linux 2.6.32 so cant test it now. But i think that the playback 
performance was with nodebug config very similar. I can test later when i 
install back 2.6.29. Meanwhile here are 2.6.32 numbers with -nosound:

neo:~# vmstat 10
procs ---memory-- ---swap-- -io -system-- cpu
 r  b   swpd   free   buff  cache   si   sobibo   in   cs us sy id wa
 1  0  0   7860  0  7669200 0 0  214   17  5  1 94  0
 1  0  0   2148  0  7669200 0 0  326   76 61  2 37  0
 1  0  0   2064  0  7669200 0 0  328   78 66  0 33  0
 1  0  0   1952  0  7669200 0 0  325   83 68  0 32  0
 1  0  0   1952  0  7669200 0 0  321   78 67  0 33  0
 1  0  0   1924  0  7669200 0 0  323   83 67  0 33  0
 1  0  0   1952  0  7669200 0 0  322   81 69  0 31  0
 1  0  0   1952  0  7669200 0 0  325   78 69  0 31  0
 1  0  0   1952  0  7669200 0 0  342   82 74  0 26  0
 0  0  0   1952  0  7669200 0 0  341   77 72  0 28  0
 0  0  0   1924  0  7669200 0 0  331   83 74  0 26  0

Regards

Radek

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-18 Thread Sebastian Reichel
On Mon, Jan 18, 2010 at 09:19:53PM +0100, Radek Polak wrote:
 Sebastian Reichel wrote:
 
  It should be fixed once mplayer package gets updated in the debian
  repository:
  
  http://git.debian.org/?p=pkg-multimedia/mplayer.git;a=commit;h=8fcfbe13ebdb
  72868c090b0d7051771aaa6fbb60
 
 Nice!
  
  Do you want me to put an updated package into pkg-fso?
 
 I am still using self-compiled glamo-based mplayer in QtMoko, but it might be 
 useful for other users. If it's not diffucult to add such package it would be 
 nice.
 
 Regards
 
 Radek

ok, added on my queue.

-- Sebastian


signature.asc
Description: Digital signature
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-18 Thread Timo Juhani Lindfors
Sebastian Reichel elektra...@gmail.com writes:
 I am still using self-compiled glamo-based mplayer in QtMoko, but it might 
 be 
 useful for other users. If it's not diffucult to add such package it would 
 be 
 nice.
 
 Regards
 
 Radek

 ok, added on my queue.

Is glamo-based mplayer really something that should be packaged? I
thought it direcly accessed the hardware and could thus mess things up
pretty badly with X? Or is this something else than the very first
mplayer glamo patches? (I'd really like to be positively surprised here!)



___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-18 Thread Sebastian Reichel
On Tue, Jan 19, 2010 at 12:24:40AM +0200, Timo Juhani Lindfors wrote:
 Sebastian Reichel elektra...@gmail.com writes:
  I am still using self-compiled glamo-based mplayer in QtMoko, but it might 
  be 
  useful for other users. If it's not diffucult to add such package it would 
  be 
  nice.
  
  Regards
  
  Radek
 
  ok, added on my queue.
 
 Is glamo-based mplayer really something that should be packaged? I
 thought it direcly accessed the hardware and could thus mess things up
 pretty badly with X? Or is this something else than the very first
 mplayer glamo patches? (I'd really like to be positively surprised here!)

I was talking about putting the tremor mplayer into pkg-fso.

-- Sebastian


signature.asc
Description: Digital signature
___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-18 Thread c_c

Hi,
  I'm using timo's .29 faster kernel. I had the gsm not registering with
this kernel using fso-abyss. Somehow, in my case (though I've has #1024 and
buzz fix applied) using gsm0710muxd always works.
  fso-abyss is very temperamental - but sometimes starts working all of a
sudden. 
HTH
-- 
View this message in context: 
http://n2.nabble.com/New-significant-speedups-coming-to-FreeRunner-tp4274107p4417866.html
Sent from the Openmoko Community mailing list archive at Nabble.com.

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-17 Thread Timo Juhani Lindfors
Radek Polak pson...@seznam.cz writes:
 just little notice. Without debug stuff and preempt, Freerunner is now 
 capable 
 of playing ogg videos in 320x240 on framebuffer without frames dropped.

Sounds very cool. Were you using tremor to decode the audio?


___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-17 Thread Radek Polak
Timo Juhani Lindfors wrote:

 Sounds very cool. Were you using tremor to decode the audio?

I think it's using ffmpeg. Anyway it's mplayer from debian stable and in my 
~/.mplayer/config are these lines:

[default]
afm=ffmpeg
vfm=ffmpeg

Regards

Radek

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Re: Freerunner can now play Ogg video

2010-01-17 Thread Timo Juhani Lindfors
Radek Polak pson...@seznam.cz writes:
 I think it's using ffmpeg. Anyway it's mplayer from debian stable and in my 
 ~/.mplayer/config are these lines:

With mplayer from debian unstable videos created with

ffmpeg2theora -x 320 -y 240 --videoquality 3 --speedlevel 2 --audioquality 3 
--samplerate 22050

do not play smoothly even with -nosound.

I am using andy-tracking a3587e4ed77974ad with DEBUG and PREEMPT
disabled with Xorg and xserver-xorg-video-fbdev -- are you perhaps
using xserver-xorg-video-glamo instead?

-Timo

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community


Freerunner can now play Ogg video [was New significant speedups coming to FreeRunner]

2010-01-16 Thread Radek Polak
Hi,
just little notice. Without debug stuff and preempt, Freerunner is now capable 
of playing ogg videos in 320x240 on framebuffer without frames dropped.

This was not possible until now and you had to use non free and patented 
codecs for videos. Now we have possibility to use open video format. For me 
it's very good news.

Btw mpeg works without glamo acceleration now too.

Regards

Radek

___
Openmoko community mailing list
community@lists.openmoko.org
http://lists.openmoko.org/mailman/listinfo/community