Freescale Cortex-A8 SoC advances to 1080p video
Updated: 2010-05-31 16:15:51
Freescale announced an heir to its i.MX51 family of ARM Cortex-A8 SoCs that boosts video decode performance to 1080p HD. The i.MX535 processor offers 720p video encode, up to 2GB of external memory, and improved peripheral support including new DDR3, SATA, and LVDS, and is compatible with Android, Linux, Windows Embedded CE, and Chromium....

: : News Feed Jobs Feed Sections Tutorials Books Events Talks Jobs Recent Jobs Kore Nordmann's Blog : Native parallel PHP job queue Job Posting : Moontoast Seeks Senior PHP Developer Nashville , TN Job Posting : Red Ventures Seeks Senior Web Applications Developer Charlotte , NC Job Posting : Vermont Information Processing Seeks Senior Lead PHP Developer Burlington , VT Job Posting : Mediware Blood Center Technologies Seeks PHP Software Developer Jacksonville , FL PHP Zone : Can Learning Drupal Get You a Job Job Posting : Tilllate Media Seeks Senior PHP Developer Glasgow , UK Job Posting : Agency Matrix Seeks Senior Application Developer Addison , TX Job Posting : HUGE Seeks Freelance Zend WordPress Developer Brooklyn , NY Job Posting : Abbott Laboratories Seeks PHP Developer Irving , TX
Remember the 1980s Fixx song One Thing Leads To Another? The lyrics to that song play with the idea that one misbegotten thing, such as a lie, can lead to more insidious things. Perhaps the flip side of that idea has some merit, too, and exploring the fertile territory that surrounds a good idea can lead to...
During a recent interview technology blog The Stop, OSS community member Tony Baechler raised the issue of...
The openSUSE Build Service (obs) is an open package and distribution development platform that provides a transparent infrastructure that allows developers to build for various major Linux distributions and architectures...
Mac/Linux: If you've been waiting for a stable Google Chrome release before trying it out on Linux and OS X, today's your lucky day...
A few months ago, I had the opportunity to meet Jim Gilmore, co-author (with Joseph Pine) of the book Authenticity: What Consumers Really Want...
Intel expanded its processor family today with six new chips...
Every day I come to work, I get excited about the possibilities of the power of participation...
As expected and wished for, HP won't use Windows 7 in their incoming HP Slate, but their newly acquired Palm WebOS...
Pentaho, which specializes in open source business intelligence (BI) applications,...
For enterprise users, the reasons to choose Linux include stability, scalability, specialization, and support...
During the opening keynote at the Google I/O conference this morning in San Francisco, the search giant unveiled new Web technologies and reaffirmed its commitment to open standards...
Today most of the browsers accept compressed content. See this. The compression on a Linux box can be achieved using GNU Zip or GZip. Here is a simple .htaccess trick to serve gzipped content to browsers.
<FilesMatch "\.(js|css)$">
RewriteEngine on
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}.gz -f
RewriteRule ^(.*)$ %{REQUEST_URI}.gz [L,QSA]
</FilesMatch>
<FilesMatch "\.(js|css)\?.*$">
RewriteEngine on
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}.gz -f
RewriteRule ^([^?]*)\?(.*)$ $1.gz?$2 [L]
</FilesMatch>
<FilesMatch "\.js\.gz(\?.*)?$">
AddEncoding [...]