Sun's OMS Video codec project is a means to an end


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Sun's OMS Video codec project is a means to an end
# 1  
Old 08-22-2008
Sun's OMS Video codec project is a means to an end

08-22-2008 01:00 PM
Sun Microsystems is setting out to create an open source, royalty-free video codec. Given the considerable head start of well-known, royalty-free video codecs like Dirac and Theora, you might ask why the world needs another. The answer, according to Sun, is the process the company will use to develop it -- starting with a full-on, careful examination of the patent situation.



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Solaris

Very new to Solaris and Sun, need help please (video card)

Hello all, I am trying to learn about Solaris and Sun systems so I purchased a SunFire 280r running Solaris 9 with a disk array from eBay. The system had no video card so I purchased a PGX32 card for the PCI slot and installed it. The problem is I have no video what so ever. I am familiar... (3 Replies)
Discussion started by: FTBTX
3 Replies

2. UNIX for Dummies Questions & Answers

Sun Video Card

My Ultra -2 Sun Monitor went blank one day ... I tried using our monitor on another Sun , It worked fine . So the problem would be with the video card .. The thing is i have an Old Ultra 1 which has not been used for some time . I hooked that up to see the monitor works with that ..it works... (6 Replies)
Discussion started by: DPAI
6 Replies
Login or Register to Ask a Question
TIFFcodec(3tiff)														  TIFFcodec(3tiff)

NAME
TIFFcodec, TIFFFindCODEC, TIFFRegisterCODEC, TIFFUnRegisterCODEC - codec-related utility routines SYNOPSIS
#include <tiffio.h> const TIFFCodec* TIFFFindCODEC(uint16 scheme); TIFFCodec* TIFFRegisterCODEC(uint16 scheme, const char* method, TIFFInitMethod init); void TIFFUnRegisterCODEC(TIFFCodec* codec); libtiff supports a variety of compression schemes implemented by software codecs. Each codec adheres to a modular interface that provides for the decoding and encoding of image data, as well as some other methods for initialization, setup, cleanup, and the control of default strip and tile sizes. Codecs are identified by the associated value of the TIFF Compression tag, for example, 5 for LZW compression. The TIFFRegisterCODEC routine can be used to augment or override the set of codecs available to an application. If the specified scheme already has a registered codec, the registered codec is overridden and any images with data encoded with this compression scheme are decoded using the supplied codec. Diagnostics No space to register compression scheme %s. TIFFRegisterCODEC was unable to allocate memory for the data structures needed to register a codec. Cannot remove compression scheme %s; not registered. TIFFUnRegisterCODEC did not locate the specified codec in the table of registered compression schemes. See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWTiff | +-----------------------------+-----------------------------+ |Interface stability |Uncommitted | +-----------------------------+-----------------------------+ libtiff(3) This man page was originally written by Sam Leffler. Updated by Breda McColgan, Sun Microsystems Inc., 2004. 01 Apr 2004 TIFFcodec(3tiff)