|
old-compression/clGetNextImageInfo(3d) -- Get information about a compressed image stream
|
handle An open handle that is actively compressing or decompressing. info A pointer where a CLimageInfo structure is to be placed. sizeOfImageInfo The size of the CLimageInfo structure in bytes. |
old-compression/clGetParams(3d) -- get and set the value of the specified parameters.
|
handle The handle to a compressor or decompressor. paramValueBuffer An array of ints containing parameter identifier/value pairs. The even elements of this array select the parameters to get or set. The odd elements are the current or new values of these parameters. bufferLength The number of ints in the buffer pointed to by paramValueBuffer. paramID An identifier of the parameter to get or set. value The new value of the parameter.... |
old-compression/CLintro(3d) -- A library for working with compressed video and audio data
|
The Compression Library provides an application programming interface for processing video and audio data using a variety of compression algorithms. Compression techniques are useful for extending the utility of system resources such as memory, disk space, and network bandwidth. Some application areas include publishing (presentations, documentation, training, archiving, and annotation), telecommunications (video/voice mail, phone, and conferencing), animation previewing (2D/3D graphics renderin... |
Tk/clipboard(3) -- Manage the clipboard
|
Tcl_Interp *interp (in) Interpreter to use for reporting errors. Tk_Window tkwin (in) Window that determines which display's clipboard to manipulate. Atom target (in) Conversion type for this clipboard item; has same meaning as target argument to Tk_CreateSelHandler. Atom format (in) Representation to use when data is retrieved; has same meaning as format argument to Tk_CreateSelHandler. char *buffer (in) Null terminated string containing the data to be appended to the clipboard.... |
standard/clipplane(3) -- specify a plane against which all geometry is clipped
|
index expects an integer in the range 0 through 5, indicating which of the 6 clipping planes is being modified. mode expects one of three tokens: CP_DEFINE: use the plane equation passed in params to define a clipplane. The clipplane is neither enabled nor disabled. CP_ON: enable the (previously defined) clipplane. CP_OFF: disable the clipplane. (default) params expects an array of 4 floats that specify a plane equation. A plane equation is usually thought of as a 4-vector [A,B,C,D]. In this cas... |
standard/clkon(3) -- control keyboard click
|
none |
f90/clock(3) -- Returns the current time
|
UNICOS, UNICOS/mk, and IRIX systems |
clock(3c) -- report CPU time used
|
clock returns the amount of CPU time used since the first call to clock. The unit time of clock (microseconds) is indicated in the macro CLOCKS_PER_SEC found in the file . The time reported is the sum of the user and system times of the calling process and its terminated child processes for which it has executed wait(2), pclose(3S), or system(3S). The resolution of the clock is 10 milliseconds on IRIS workstations.... |
old-compression/clOpenCompressor(3d) -- Compress a video or audio stream
|
scheme The compression scheme to use. handlePtr A pointer to the returned handle of the compressor. Used by subsequent calls to identify the compressor. handle A handle to the compressor. numberOfFrames The number of frames to compress, which should be a multiple of CL_FRAMES_PER_CHUNK (usually 1 for video). numberOfFrames may also be specified as CL_CONTINUOUS_BLOCK or CL_CONTINUOUS_NONBLOCK. frameBuffer A pointer to the frame buffer to be compressed. A value of CL_EXTERNAL_DEVICE may be used w... |
old-compression/clOpenDecompressor(3d) -- Decompress a video or audio stream
|
scheme The decompression scheme to use. handlePtr A pointer to the returned handle of the decompressor. Used by subsequent calls to identify the decompressor. handle A handle to the decompressor. numberOfFrames The number of frames to decompress, which should be a multiple of CL_FRAMES_PER_CHUNK (usually 1 for video). numberOfFrames may also be specified as CL_CONTINUOUS_BLOCK or CL_CONTINUOUS_NONBLOCK. compressedBufferSize The size of the data to be decompressed in bytes. Used with non-NULL com... |
old-compression/clOpenDemux(3d) -- Demultiplex into video and audio streams
|
scheme The demultiplexing scheme to use. handlePtr A pointer to the returned handle of the demultiplexer. Used by subsequent calls to identify the demultiplexer. handle A handle to the demultiplexer. count The number of iterations to execute. The amount of processing done during each iteration is scheme and data dependent. count may also be specified as CL_CONTINUOUS_BLOCK or CL_CONTINUOUS_NONBLOCK.... |
old-compression/clOpenMux(3d) -- Multiplex video and audio streams
|
scheme The multiplexing scheme to use. handlePtr A pointer to the returned handle of the multiplexer. Used by subsequent calls to identify the multiplexer. handle A handle to the multiplexer. count The number of iterations to execute. The amount of processing done during each iteration is scheme and data dependent. count may also be specified as CL_CONTINUOUS_BLOCK or CL_CONTINUOUS_NONBLOCK. |
Tcl/close(3) -- Close an open file
|
Closes the file given by fileId. FileId must be the return value from a previous invocation of the open command; after this command, it should not be used anymore. If fileId refers to a command pipeline instead of a file, then close waits for the children to complete. The normal result of this command is an empty string, but errors are returned if there are problems in closing the file or waiting for children to complete.... |