Re: Best encoder for streaming video?

2008-09-01 Thread Andrew Zabolotny
From Tue, 26 Aug 2008 16:27:24 -0600 Merrick Fonnesbeck [EMAIL PROTECTED] wrote: before sending it out. The video appears on the other side very choppy and pixelated, and I am wondering if I am using the right encoder or whether there is a better encoder that would compress my video better

Maemo Bug Jar #20

2008-09-01 Thread Stephen Gadsby
A Quick Look at maemo Bugzilla (https://bugs.maemo.org/). 2008-08-25 through 2008-08-31 As of 2008-09-01 maemo Bugzilla contains 2636 (+15 this week) items, including 1066 open issues (+4 this week): * 688 open bugs (+1 this week) * 16 critical/blocker (+2 this week) * 18 easyfix

SDL, pixel format and little endian issue

2008-09-01 Thread Michael Stepanov
Hi, I have a SDL application where I have to replace color of specified pixels. So, I have a color in RGB representation and convert it to the pixel color using that approach: Uint32 PixelSrc = (0 PF-Rshift) | (128 PF-Gshift) | (192 PF-Bshift); But as result I get color 0x10c0 instead of

Re: SDL, pixel format and little endian issue

2008-09-01 Thread Frantisek Dufka
Michael Stepanov wrote: Hi, I have a SDL application where I have to replace color of specified pixels. So, I have a color in RGB representation and convert it to the pixel color using that approach: Uint32 PixelSrc = (0 PF-Rshift) | (128 PF-Gshift) | (192 PF-Bshift); But as

Re: SDL, pixel format and little endian issue

2008-09-01 Thread Michael Stepanov
On Mon, Sep 1, 2008 at 4:16 PM, Frantisek Dufka [EMAIL PROTECTED] wrote: Michael Stepanov wrote: Hi, I have a SDL application where I have to replace color of specified pixels. So, I have a color in RGB representation and convert it to the pixel color using that approach: Uint32 PixelSrc

seeking help for starting browser application in a minimized fashion

2008-09-01 Thread Alex Leung
Hi maemo community members, I managed to get my N810 to autostart the browser whenever it boots up, by modifying /etc/osso-af-init/real-af-base-apps Now, is it possible to launch it in the background? That is, the browser will be loading, but its icon is always showing minimized in the task

Re: SDL, pixel format and little endian issue

2008-09-01 Thread Michael Stepanov
Just fixed issue with wrong color of pixels by creating 16bit pixel instead of 32bit: Uint16 PlutoPixelDest = ((ReplacementColor.R() PF-Rloss) PF-Rshift) + ((ReplacementColor.G() PF-Gloss) PF-Gshift) + ((ReplacementColor.B()