diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-10-24 02:59:03 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-10-24 02:59:03 +0000 |
commit | 23cd46c91f1e5002d1e950e221e052790b52c375 (patch) | |
tree | cc84387a81dcd4b12687532cf54820e4e4916e74 /src | |
parent | 0ed66f8029709e004e3ef3441e1e38ec8982886e (diff) | |
download | xine-lib-23cd46c91f1e5002d1e950e221e052790b52c375.tar.gz xine-lib-23cd46c91f1e5002d1e950e221e052790b52c375.tar.bz2 |
obsolete a special buffer type (fewer special cases is better)
CVS patchset: 5583
CVS date: 2003/10/24 02:59:03
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/buffer.h | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index abe3457b7..d60c51611 100644 --- a/src/xine-engine/buffer.h +++ b/src/xine-engine/buffer.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: buffer.h,v 1.121 2003/10/14 22:16:32 tmattern Exp $ + * $Id: buffer.h,v 1.122 2003/10/24 02:59:03 tmmm Exp $ * * * contents: @@ -314,18 +314,9 @@ struct buf_element_s { */ #define BUF_SPECIAL_PALETTE 1 -/* - * In a BUF_SPECIAL_IDCIN_HUFFMAN_TABLE buffer: - * decoder_info[1] = BUF_SPECIAL_IDCIN_HUFFMAN_TABLE - * decoder_info[2] = 65536 (size of data) - * decoder_info_ptr[2] = pointer to a 65536-element byte array containing the - * Huffman tables from an Id CIN file - * This buffer is used to transport the Huffman tables from an Id CIN - * file to the Id CIN decoder. A decoder should not count on the byte array - * to exist for the duration of the program's execution and should copy the - * data into its own private structures. - */ -#define BUF_SPECIAL_IDCIN_HUFFMAN_TABLE 2 + +/* special buffer type 2 used to be defined but is now available for use */ + /* * In a BUF_SPECIAL_ASPECT buffer: |