From f4c8ddb28e648310327d3a4329f85eca84463681 Mon Sep 17 00:00:00 2001 From: Richard Boulton Date: Sat, 30 Dec 2000 13:14:09 +0000 Subject: [PATCH] Remove template files from CVS: they're autogenerated better. Original commit message from CVS: Remove template files from CVS: they're autogenerated better. --- docs/libs/tmpl/dct.sgml | 116 ---- docs/libs/tmpl/externals.sgml | 24 - docs/libs/tmpl/gstcolorspace.sgml | 156 ----- docs/libs/tmpl/gstgetbits.sgml | 562 ---------------- docs/libs/tmpl/gstgetbits_inl.sgml | 626 ------------------ docs/libs/tmpl/gstidct.sgml | 90 --- docs/libs/tmpl/gstputbits.sgml | 292 --------- docs/libs/tmpl/gstriff.sgml | 1243 ------------------------------------ docs/libs/tmpl/gstvideoscale.sgml | 85 --- docs/libs/tmpl/wineacm.sgml | 95 --- 10 files changed, 3289 deletions(-) delete mode 100644 docs/libs/tmpl/dct.sgml delete mode 100644 docs/libs/tmpl/externals.sgml delete mode 100644 docs/libs/tmpl/gstcolorspace.sgml delete mode 100644 docs/libs/tmpl/gstgetbits.sgml delete mode 100644 docs/libs/tmpl/gstgetbits_inl.sgml delete mode 100644 docs/libs/tmpl/gstidct.sgml delete mode 100644 docs/libs/tmpl/gstputbits.sgml delete mode 100644 docs/libs/tmpl/gstriff.sgml delete mode 100644 docs/libs/tmpl/gstvideoscale.sgml delete mode 100644 docs/libs/tmpl/wineacm.sgml diff --git a/docs/libs/tmpl/dct.sgml b/docs/libs/tmpl/dct.sgml deleted file mode 100644 index e396bd0..0000000 --- a/docs/libs/tmpl/dct.sgml +++ /dev/null @@ -1,116 +0,0 @@ - -dct - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -@block: - - - - - - - -@block: - - - - - - - -@block: - - - - - - - -@block: - - - - - - - -@block: - - diff --git a/docs/libs/tmpl/externals.sgml b/docs/libs/tmpl/externals.sgml deleted file mode 100644 index cb597cf..0000000 --- a/docs/libs/tmpl/externals.sgml +++ /dev/null @@ -1,24 +0,0 @@ - -externals - - - - - - - - - - - - - - - - - - - -@Returns: - - diff --git a/docs/libs/tmpl/gstcolorspace.sgml b/docs/libs/tmpl/gstcolorspace.sgml deleted file mode 100644 index 027698d..0000000 --- a/docs/libs/tmpl/gstcolorspace.sgml +++ /dev/null @@ -1,156 +0,0 @@ - -GstColorSpace - - -Convert between different colorspaces - - - -The GstColorSpaceConverter can be used to convert between different -colorspaces. The most common colorspaces conversions are implemented in -fast MMX assembler. - - -a typical usage pattern is: - - ... - GstColorSpaceConverter *converter; - - // we setup a converter for a 100x100 bitmap - converter = gst_colorspace_converter_new(100, 100, GST_COLORSPACE_YUV420P, - GST_COLORSPACE_RGB565, gdk_visual_get_system()); - - ... - // perform the conversion - gst_colorspace_convert(converter, src, dest); - ... - - - - - - - - - - -A list of all available colorspaces. - - -@GST_COLORSPACE_RGB555: big endian (0RRRRRGG GGGBBBBB) -@GST_COLORSPACE_BGR555: little endian (GGGBBBBB 0RRRRRGG) -@GST_COLORSPACE_RGB565: big endian (RRRRRGGG GGGBBBBB) -@GST_COLORSPACE_BGR565: little endian (GGGBBBBB RRRRRGGG) -@GST_COLORSPACE_RGB24: big endian (RRRRRRRR GGGGGGGG BBBBBBBB) -@GST_COLORSPACE_BGR24: little endian (BBBBBBBB GGGGGGGG RRRRRRRR) -@GST_COLORSPACE_RGB32: big endian (00000000 RRRRRRRR GGGGGGGG BBBBBBBB) -@GST_COLORSPACE_BGR32: little endian (BBBBBBBB GGGGGGGG RRRRRRRR 00000000) -@GST_COLORSPACE_YUV420: -@GST_COLORSPACE_YUV420P: -@GST_COLORSPACE_YUV422: -@GST_COLORSPACE_YUV422P: - - - -The structure that holds the information about the conversion. - - -@width: -@height: -@srcspace: -@destspace: -@visual: -@insize: -@outsize: -@color_tables: -@convert: - - - - - - -@space: -@src: -@dest: - - - - -The first RGB GstColorSpaceType - - - - - - - -The first YUV GstColorSpaceType - - - - - - - -The first YUV GstColorSpaceType - - - - - - - -The last RGB GstColorSpaceType - - - - - - -Check if a given colorspace type is YUV - - -@type: the type to check - - - - - -Check if a given colorspace type is RGB - - -@type: the type to check - - - - -Create a new colorspace converter - - -@width: the width of the source and destination bitmap -@height: the height of the source and destination bitmap -@srcspace: the source colorspace type -@destspace: the destination colorspace type -@destvisual: the destination visual -@Returns: a new colorspace converter - - - - -Perform the conversion - - -@converter: the converter as created with gst_colorspace_converter_new() -@src: the source bitmap -@dest: the destination bitmap - - - - -Destroys the colorspace converter - - -@space: the colorspace converter to destroy - - diff --git a/docs/libs/tmpl/gstgetbits.sgml b/docs/libs/tmpl/gstgetbits.sgml deleted file mode 100644 index 0d41ccd..0000000 --- a/docs/libs/tmpl/gstgetbits.sgml +++ /dev/null @@ -1,562 +0,0 @@ - -GstGetbits - - -Work with bits in an input stream - - - -the getbits functions can be used to manipulate a bitstream like -an MPEG stream. - - - - - - - - - - - - -@ptr: -@longptr: -@endptr: -@length: -@bits: -@dword: -@temp: -@callback: -@data: -@get1bit: -@getbits: -@getbits_fast: -@getbyte: -@show1bit: -@showbits: -@flushbits: -@backbits: - - - -The callback function definition. - - -@gb: a pointer to the getbits structure -@data: user data - - - - - - - -@gb: -@callback: -@data: - - - - - - - -@gb: -@buffer: -@len: - - - - - - - -@gb: - - - - -Align the parser to the next byte in the input. - - -@gb: the bit parser - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: the bit parser - - - - - - - -@gb: the bit parser -@n: - - - - - - - -@gb: -@num: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: the bit parser - - - - - - - -@gb: -@num: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: -@num: - - - - - - - -@gb: - - - - - - - -@gb: -@num: - - - - - - - -@gb: - - diff --git a/docs/libs/tmpl/gstgetbits_inl.sgml b/docs/libs/tmpl/gstgetbits_inl.sgml deleted file mode 100644 index 9da58f0..0000000 --- a/docs/libs/tmpl/gstgetbits_inl.sgml +++ /dev/null @@ -1,626 +0,0 @@ - -gstgetbits_inl - - - - - - - - - - - - - - - - - - - -@format: -@args...: - - - - - - - -@format: -@args...: - - - - - - - -@src: -@dst: - - - - - - - -@src: -@dst: - - - - - - - -@x: - - - - - - - -@gb: -@callback: -@data: - - - - - - - -@gb: -@buffer: -@len: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: -@num: -@mask: -@shift: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: -@num: - - - - - - - -@gb: - - - - - - - -@gb: -@num: -@mask: -@shift: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: - - - - - - - -@gb: -@num: - - - - - - - -@gb: - - - - - - - -@gb: -@num: - - - - - - - -@gb: - - - - - - - -@gb: -@num: - - diff --git a/docs/libs/tmpl/gstidct.sgml b/docs/libs/tmpl/gstidct.sgml deleted file mode 100644 index e222c4a..0000000 --- a/docs/libs/tmpl/gstidct.sgml +++ /dev/null @@ -1,90 +0,0 @@ - -GstIDCT - - -Inverse cosine transform - - - -The inverse cosine transform is used in MPEG video. This module -contains various implementations of this algorithm. - - - - - - - - - -The different IDCT methods available - - -@GST_IDCT_DEFAULT: The fastest IEEE compliant implementation for this machine -@GST_IDCT_INT: integer IDCT -@GST_IDCT_FAST_INT: fastest integer -@GST_IDCT_FLOAT: accurate float version -@GST_IDCT_MMX: fast MMX (not IEEE compliant) -@GST_IDCT_MMX32: accurate MMX -@GST_IDCT_SSE: fast SSE optimised IDCT - - - - - - -@convert: -@convert_sparse: -@need_transpose: - - - -The definition of the actual implementation of the IDCT transform - - -@block: the block to transform - - - - -Query if this the transformer needs transposed input - - -@idct: the transformer - - - - -Create a new IDCT transformer - - -@method: the desired method -@Returns: the new transformer - - - - -Perform the conversion - - -@idct: the transformer -@blocks: a pointer to the blocks - - - - -Perform a sparse conversion - - -@idct: the transformer -@blocks: the blocks - - - - -Destroy the transformer - - -@idct: the transformer to destroy - - diff --git a/docs/libs/tmpl/gstputbits.sgml b/docs/libs/tmpl/gstputbits.sgml deleted file mode 100644 index 2b74e20..0000000 --- a/docs/libs/tmpl/gstputbits.sgml +++ /dev/null @@ -1,292 +0,0 @@ - -GstPutbits - - -Write bits into a memory buffer - - - -The putbits library can be used to write out a bit stream. - - - - - - - - - - - - -@outbfr: -@outbase: -@temp: -@outcnt: -@bytecnt: -@len: -@newlen: - - - -Initialize the bit writer - - -@pb: the putbits structure - - - - -Prepare the putbits structure for writing len bytes. A new buffer -with the given length will be allocated which you must free. - - -@pb: the putbits structure -@len: the bytes that are going to be written - - - - -Prepare the putbits structure for writing len bytes. The bits -will be written in the supplied buffer. - - -@pb: the putbits structure -@buffer: the buffer to write the bits in -@len: the length of the buffer - - - - -Align the bits to the next byte. The buffer will be filled with zeroes. - - -@pb: the putbits structure - - - - -Get the number of bits written to the buffer - - -@pb: the putbits structure -@Returns: the number of bits written - - - - -Put one bit in the buffer - - -@gb: the putbits structure -@val: the value of the bit to put in the buffer - - - - -Put 2 bits into the buffer - - -@gb: the putbits structure -@val: the value of the bits to put in the buffer - - - - - - - -@gb: the putbits structure -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - - - - -@gb: -@val: - - - - -Put a variable number of bits into the buffer - - -@gb: the putbits structure -@val: the value of the bits to put into the buffer -@n: the number of bits to put into the buffer - - diff --git a/docs/libs/tmpl/gstriff.sgml b/docs/libs/tmpl/gstriff.sgml deleted file mode 100644 index 813fb55..0000000 --- a/docs/libs/tmpl/gstriff.sgml +++ /dev/null @@ -1,1243 +0,0 @@ - -GstRiff - - -AVI parser and encoder library - - - - - - - - - - - - - -The various functions may return the following values: - - -@GST_RIFF_OK: no error -@GST_RIFF_ENOTRIFF: no riff header found -@GST_RIFF_EINVAL: invalied parameters given -@GST_RIFF_ENOMEM: no memory - - - -Internal state of the parser - - -@GST_RIFF_STATE_INITIAL: -@GST_RIFF_STATE_HASAVIH: -@GST_RIFF_STATE_HASSTRH: -@GST_RIFF_STATE_HASSTRF: -@GST_RIFF_STATE_MOVI: - - - -Create a FOURCC - - -@a: -@b: -@c: -@d: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -@us_frame: -@max_bps: -@pad_gran: -@flags: -@init_frames: -@streams: -@bufsize: -@width: -@height: -@scale: -@rate: -@start: -@length: - - - - - - -@type: -@fcc_handler: -@flags: -@init_frames: -@scale: -@rate: -@start: -@length: -@bufsize: -@quality: -@samplesize: - - - - - - -@size: -@width: -@height: -@planes: -@bit_cnt: -@compression: -@image_size: -@xpels_meter: -@ypels_meter: -@num_colors: -@imp_colors: - - - - - - -@format: -@rate: -@av_bps: -@blockalign: -@size: - - - - - - -@id: -@size: -@type: - - - - - - -@id: -@size: -@type: - - - - - - -@id: -@size: - - - - - - -@id: -@flags: -@size: - - - - - - -@form: -@chunks: -@incomplete_chunk: -@incomplete_chunk_size: -@state: -@curoffset: -@nextlikely: -@dataleft: -@dataleft_size: -@new_tag_found: -@callback_data: - - - - - - -@offset: -@id: -@size: -@form: -@data: - - - -This function will be called when a new chunk has been decoded - - -@chunk: the chunk -@data: user data - - - - -Create a new riff parser - - -@function: the function that will be called when a new chunk has been found -@data: the data to include in the function -@Returns: a new riff structure - - - - -Subit a new buffer to the parser - - -@riff: the riff parser -@buf: a buffer -@off: the offset of the buffer in the stream -@Returns: one of the return values - - - - -Resync the parser to a new offset - - -@riff: the parser -@offset: the new offset to resync to - - - - -Create a new riff encoder - - -@type: the type riff stream to encode -@Returns: a riff structure - - - - -Submit a new avi header to the encoder - - -@riff: the encoder -@head: the header -@size: the size of the dat in the body -@Returns: a status - - - - -Submit a new stream header to the encoder - - -@riff: the encoder -@fcc_type: the fourcc type -@head: the header -@size: the size of the body -@Returns: a status - - - - -Submit a new stream form to the encoder - - -@riff: the encoder -@format: the format -@size: the size -@Returns: a status - - - - -submit a new chunk to the encoder - - -@riff: the encoder -@chunk_type: the chunk type -@chunk: the chunk -@size: the size of the chunk data -@Returns: a status - - - - -Get the buffer that is currently constructed in the encoder - - -@riff: the encoder -@Returns: the buffer - - - - -Get the buffer that is currently constructed in the encoder and clear it - - -@riff: the encoder -@Returns: the buffer - - - - -Convert a fourcc to an id - - -@fourcc: the fourcc -@Returns: the id value - - - - -Convert an id to a fourcc - - -@id: the id -@Returns: the fourcc. You must free the data if it is no longer needed. - - diff --git a/docs/libs/tmpl/gstvideoscale.sgml b/docs/libs/tmpl/gstvideoscale.sgml deleted file mode 100644 index 62199ac..0000000 --- a/docs/libs/tmpl/gstvideoscale.sgml +++ /dev/null @@ -1,85 +0,0 @@ - -GstVideoScale - - -Scale a video buffer - - - -This library implements a scaling algorithm for video buffers. - - - - - - - - - -the different scaling methods available. - - -@GST_VIDEOSCALE_POINT_SAMPLE: perform a point sample filter -@GST_VIDEOSCALE_NEAREST: use a nearest neighbor algorithm -@GST_VIDEOSCALE_BILINEAR: use a bilinear filter -@GST_VIDEOSCALE_BICUBIC: use a bicubic filter - - - - - - -@source_width: -@source_height: -@dest_width: -@dest_height: -@format: -@method: -@copy_row: -@temp: -@scale: -@scaler: -@filter: - - - -the actual scaler implementation - - -@scale: -@src: -@dest: - - - - -Create a new video scaler - - -@sw: the width of the source bitmap -@sh: the height of the source bitmap -@dw: the width of the destination bitmap -@dh: the height of the destination bitmap -@format: the format of the source and destination bitmaps -@method: the filter method -@Returns: a new scaler - - - - -Perform the scale - - -@scaler: the scaler -@src: the source buffer -@dest: the destination buffer - - - - -Destroy the scaler - - -@scale: the scaler to destroy - - diff --git a/docs/libs/tmpl/wineacm.sgml b/docs/libs/tmpl/wineacm.sgml deleted file mode 100644 index ad147f1..0000000 --- a/docs/libs/tmpl/wineacm.sgml +++ /dev/null @@ -1,95 +0,0 @@ - -wineacm - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -@pszDriverAlias: -@pszFileName: -@hinstModule: -@Returns: - - - - - - - - - - - - - - -@p: -@Returns: - - - - - - - - - - - - - - -@hDriverID: -@Returns: - - - - - - - -@hDriver: -@Returns: - - - - - - - -@hObj: -@Returns: - - -- 2.7.4