package ti.sdo.ce.examples.codecs.viddec_copy

Codec Engine VIDDEC-compliant codec

This codec illustrates the simplest integration into the Codec Engine. Only three files are required to integrate into CE: [ more ... ]
XDCspec declarations sourced in ti/sdo/ce/examples/codecs/viddec_copy/package.xdc
package ti.sdo.ce.examples.codecs.viddec_copy [1, 0, 0] {
 
    module VIDDEC_COPY;
    // VIDDEC_COPY codec specification
}
DETAILS
This codec illustrates the simplest integration into the Codec Engine. Only three files are required to integrate into CE:
package.xdc
This file is required to declare a name for this package and to list all codec interfaces available.
VIDDEC_COPY.xdc
This file specifies a codec (named VIDDEC_COPY) that is provided by this package.
VIDDEC_COPY.xs
this file implements the functions required by the ICodec interface; these functions enable the codec to describe its non-functional requirements such as stack size. All other files in this package are simply the implementation of the codec as specified by XDM's IVIDDEC interface. Integration into CE requires no change to the codecs sources. As the IVIDDEC interface is deprecated, the XDAIS product doesn't provide an example of an algorithm that implements the IVIDDEC interface. This package serves two purposes:
  • Simple reference implementation of an algorithm that implements the IVIDDEC interface
  • Example of a package that both provides an algorithm's XDAIS/XDM libraries and implements the ti.sdo.ce.ICodec interface.
generated on Fri, 24 Feb 2012 03:46:54 GMT