<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.newlc.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>NewLC - Video - Comments</title>
 <link>http://www.newlc.com/forums/video</link>
 <description>Comments for &quot;Video&quot;</description>
 <language>en</language>
<item>
 <title>Re: video doesn&#039;t play</title>
 <link>http://www.newlc.com/forum/video-doesnt-play#comment-48814</link>
 <description>&lt;p&gt; &lt;img src=&quot;/sites/all/modules/smileys/packs/example/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; /&gt; how it should be done in 2nd ed. fp3.&lt;/p&gt;

&lt;p&gt;me using &lt;br /&gt;
CVideoPlayerUtility::NewL(*this,EMdaPriorityMax, EMdaPriorityPreferenceNone,  iView-&gt;ClientWsSession(), iView-&gt;ScreenDevice(), iView-&gt;ClientWindow(), iView-&gt;VideoRect(),	iView-&gt;VideoRect() );&lt;/p&gt;</description>
 <pubDate>Tue, 30 Sep 2008 06:40:06 +0200</pubDate>
 <dc:creator>chandrafsm</dc:creator>
 <guid isPermaLink="false">comment 48814 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: video doesn&#039;t play</title>
 <link>http://www.newlc.com/forum/video-doesnt-play#comment-48799</link>
 <description>&lt;p&gt;A bug in your code ?&lt;br /&gt;
Might be you don&#039;t have enough priority to use the Multimedia API while a call is ringing&lt;/p&gt;</description>
 <pubDate>Mon, 29 Sep 2008 14:10:44 +0200</pubDate>
 <dc:creator>eric</dc:creator>
 <guid isPermaLink="false">comment 48799 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: The CMMFDevVideoRecord class usage problem</title>
 <link>http://www.newlc.com/topic-15847#comment-48718</link>
 <description>&lt;p&gt;Yes... BAK is available to Symbian Partners only.&lt;/p&gt;</description>
 <pubDate>Thu, 25 Sep 2008 23:18:34 +0200</pubDate>
 <dc:creator>eric</dc:creator>
 <guid isPermaLink="false">comment 48718 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: The CMMFDevVideoRecord class usage problem</title>
 <link>http://www.newlc.com/topic-15847#comment-48717</link>
 <description>&lt;p&gt;Rewot, how can I obtain the Binary Access Toolkit? &lt;br /&gt;
Do I need to become a Symbian Partner?&lt;br /&gt;
Regards,&lt;br /&gt;
Alisson&lt;/p&gt;</description>
 <pubDate>Thu, 25 Sep 2008 21:49:12 +0200</pubDate>
 <dc:creator>agusatti</dc:creator>
 <guid isPermaLink="false">comment 48717 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: questions about scale and rotate video frame</title>
 <link>http://www.newlc.com/forum/questions-about-scale-and-rotate-video-frame#comment-48630</link>
 <description>&lt;p&gt;thanks, assayag,alh,i have done this job in my decoder&lt;br /&gt;
it looks like that nokia use the c55 dsp only in gsm sms dial ....&lt;/p&gt;</description>
 <pubDate>Sun, 21 Sep 2008 15:47:19 +0200</pubDate>
 <dc:creator>codecman</dc:creator>
 <guid isPermaLink="false">comment 48630 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: questions about scale and rotate video frame</title>
 <link>http://www.newlc.com/forum/questions-about-scale-and-rotate-video-frame#comment-48591</link>
 <description>&lt;p&gt;or, if you have a video decoder that only outputs in a specific resolution and no other, you can use a simple DDA scaling algoritm that uses only additions in its inner loop, and you should get it quick enough,...&lt;br /&gt;
&lt;/p&gt;</description>
 <pubDate>Thu, 18 Sep 2008 10:09:52 +0200</pubDate>
 <dc:creator>alh</dc:creator>
 <guid isPermaLink="false">comment 48591 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: questions about scale and rotate video frame</title>
 <link>http://www.newlc.com/forum/questions-about-scale-and-rotate-video-frame#comment-48590</link>
 <description>&lt;p&gt;no video player will use any of the CFbsBitGc functions nor will it use any CBitmapScaler or anything like that.&lt;br /&gt;
Those are quite slow, and it would be too much overhead to keep the image twice in memory and do this heavy operation each frame.&lt;/p&gt;

&lt;p&gt;What they do is that their decoding algorithm in itself support to output in different resolutions...&lt;/p&gt;

&lt;p&gt;rotation supported is typically only 90,180,270 degrees, which are trivial.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
 <pubDate>Thu, 18 Sep 2008 10:06:53 +0200</pubDate>
 <dc:creator>alh</dc:creator>
 <guid isPermaLink="false">comment 48590 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: questions about scale and rotate video frame</title>
 <link>http://www.newlc.com/forum/questions-about-scale-and-rotate-video-frame#comment-48568</link>
 <description>&lt;p&gt;For scale don&#039;t use the static function!&lt;br /&gt;
You shoud instead use that: &lt;/p&gt;

&lt;p&gt;CFbsBitGc* fbsBitGc = CFbsBitGc::NewL (); //graphic context&lt;br /&gt;
	CleanupStack::PushL ( fbsBitGc);  &lt;br /&gt;
	CFbsBitmap* tmpBitmap = new CFbsBitmap();&lt;br /&gt;
	tmpBitmap-&gt;Create (TSize (iWidth, iHeight), iBitmap-&gt;DisplayMode ()); //iWidth,iHeight are input arguments&lt;br /&gt;
	CFbsBitmapDevice* tmpDevice = CFbsBitmapDevice::NewL ( tmpBitmap);&lt;br /&gt;
	fbsBitGc-&gt;Activate ( tmpDevice); &lt;br /&gt;
	fbsBitGc-&gt;DrawBitmap ( TRect (0, 0, iWidth, iHeight), iBitmap); //will display the scaled bitmap in viewfinder&lt;br /&gt;
	&lt;br /&gt;
	delete tmpDevice;&lt;br /&gt;
     CleanupStack::PopAndDestroy(fbsBitGc);&lt;br /&gt;
	return tmpBitmap; //return the scaled bitmap&lt;/p&gt;

&lt;p&gt;Regards&lt;br /&gt;
Assayag&lt;/p&gt;</description>
 <pubDate>Tue, 16 Sep 2008 13:03:28 +0200</pubDate>
 <dc:creator>assayag</dc:creator>
 <guid isPermaLink="false">comment 48568 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Video preview</title>
 <link>http://www.newlc.com/forum/video-preview#comment-48557</link>
 <description>&lt;p&gt;yes... but you will need to code it yourself.&lt;/p&gt;</description>
 <pubDate>Mon, 15 Sep 2008 22:34:20 +0200</pubDate>
 <dc:creator>eric</dc:creator>
 <guid isPermaLink="false">comment 48557 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: CVideoRecorderUtility?</title>
 <link>http://www.newlc.com/topic-16004#comment-48326</link>
 <description>&lt;p&gt;For CVideoRecorderUtility only OpenFileL is implemented.&lt;br /&gt;
url function is not implemented.&lt;/p&gt;

&lt;p&gt;for Des I am not sure.&lt;/p&gt;</description>
 <pubDate>Thu, 28 Aug 2008 14:28:12 +0200</pubDate>
 <dc:creator>paijwar</dc:creator>
 <guid isPermaLink="false">comment 48326 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: YUV 420 to RGB</title>
 <link>http://www.newlc.com/forum/yuv-420-rgb#comment-47951</link>
 <description>&lt;p&gt;varunghatge,&lt;/p&gt;

&lt;p&gt;I meant that it must be more than an accident that the period of the purple pattern is 288 pixels. Basically, I meant the same as what alh said, that you have messed up the U and V values somehow, there must be some flaws in either addressing the YUV array or the resultant bitmap.&lt;/p&gt;</description>
 <pubDate>Fri, 08 Aug 2008 08:00:30 +0200</pubDate>
 <dc:creator>lvsti</dc:creator>
 <guid isPermaLink="false">comment 47951 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: YUV 420 to RGB</title>
 <link>http://www.newlc.com/forum/yuv-420-rgb#comment-47939</link>
 <description>&lt;p&gt;Thanks for yur reply guys&lt;br /&gt;
alh i have already written tou a private msg regarding this topic&lt;br /&gt;
lvsti i did not understand what do you mean by &lt;br /&gt;
However, the purple pattern on the screenshot have a period of 288 pixels, which is way too suspicious (CIF video size is 352x288, QCIF is 176x144).&lt;br /&gt;
can u please elaborate?&lt;/p&gt;</description>
 <pubDate>Thu, 07 Aug 2008 15:20:46 +0200</pubDate>
 <dc:creator>varunghatge</dc:creator>
 <guid isPermaLink="false">comment 47939 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: YUV 420 to RGB</title>
 <link>http://www.newlc.com/forum/yuv-420-rgb#comment-47936</link>
 <description>&lt;p&gt;Yes, it very much looks like you mess up the U and V values.&lt;/p&gt;

&lt;p&gt;Could be a problem with how you step through them, or a problem with how you calculate them...&lt;/p&gt;

&lt;p&gt;Also make sure you don&#039;t overflow any variable in your multiplications and shiftings.&lt;/p&gt;</description>
 <pubDate>Thu, 07 Aug 2008 14:39:09 +0200</pubDate>
 <dc:creator>alh</dc:creator>
 <guid isPermaLink="false">comment 47936 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: YUV 420 to RGB</title>
 <link>http://www.newlc.com/forum/yuv-420-rgb#comment-47935</link>
 <description>&lt;p&gt;Hehe, I meant, &lt;span style=&quot;font-style:italic&quot;&gt;if I were you&lt;/span&gt;, I&#039;d look around the code...  &lt;img src=&quot;/sites/all/modules/smileys/packs/example/wink.png&quot; title=&quot;Eye-wink&quot; alt=&quot;Eye-wink&quot; /&gt; &lt;/p&gt;

&lt;p&gt;Anyway, for first sight the Y calculating code before pixel3 is commented out but that cannot be the reason for the purpling. However, the purple pattern on the screenshot have a period of 288 pixels, which is way too suspicious (CIF video size is 352x288, QCIF is 176x144)... &lt;/p&gt;</description>
 <pubDate>Thu, 07 Aug 2008 14:37:38 +0200</pubDate>
 <dc:creator>lvsti</dc:creator>
 <guid isPermaLink="false">comment 47935 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: YUV 420 to RGB</title>
 <link>http://www.newlc.com/forum/yuv-420-rgb#comment-47933</link>
 <description>&lt;p&gt;Please find my code attached&lt;/p&gt;</description>
 <pubDate>Thu, 07 Aug 2008 14:26:02 +0200</pubDate>
 <dc:creator>varunghatge</dc:creator>
 <guid isPermaLink="false">comment 47933 at http://www.newlc.com</guid>
</item>
</channel>
</rss>
