annotate src/flac-1.2.1/src/libFLAC/include/private/bitwriter.h @ 20:ab7c38c4c577

Ranlib
author Chris Cannam
date Mon, 25 Mar 2013 16:28:19 +0000
parents 05aa0afa9217
children
rev   line source
Chris@1 1 /* libFLAC - Free Lossless Audio Codec library
Chris@1 2 * Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
Chris@1 3 *
Chris@1 4 * Redistribution and use in source and binary forms, with or without
Chris@1 5 * modification, are permitted provided that the following conditions
Chris@1 6 * are met:
Chris@1 7 *
Chris@1 8 * - Redistributions of source code must retain the above copyright
Chris@1 9 * notice, this list of conditions and the following disclaimer.
Chris@1 10 *
Chris@1 11 * - Redistributions in binary form must reproduce the above copyright
Chris@1 12 * notice, this list of conditions and the following disclaimer in the
Chris@1 13 * documentation and/or other materials provided with the distribution.
Chris@1 14 *
Chris@1 15 * - Neither the name of the Xiph.org Foundation nor the names of its
Chris@1 16 * contributors may be used to endorse or promote products derived from
Chris@1 17 * this software without specific prior written permission.
Chris@1 18 *
Chris@1 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Chris@1 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Chris@1 21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Chris@1 22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
Chris@1 23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
Chris@1 24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
Chris@1 25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
Chris@1 26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
Chris@1 27 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
Chris@1 28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Chris@1 29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Chris@1 30 */
Chris@1 31
Chris@1 32 #ifndef FLAC__PRIVATE__BITWRITER_H
Chris@1 33 #define FLAC__PRIVATE__BITWRITER_H
Chris@1 34
Chris@1 35 #include <stdio.h> /* for FILE */
Chris@1 36 #include "FLAC/ordinals.h"
Chris@1 37
Chris@1 38 /*
Chris@1 39 * opaque structure definition
Chris@1 40 */
Chris@1 41 struct FLAC__BitWriter;
Chris@1 42 typedef struct FLAC__BitWriter FLAC__BitWriter;
Chris@1 43
Chris@1 44 /*
Chris@1 45 * construction, deletion, initialization, etc functions
Chris@1 46 */
Chris@1 47 FLAC__BitWriter *FLAC__bitwriter_new(void);
Chris@1 48 void FLAC__bitwriter_delete(FLAC__BitWriter *bw);
Chris@1 49 FLAC__bool FLAC__bitwriter_init(FLAC__BitWriter *bw);
Chris@1 50 void FLAC__bitwriter_free(FLAC__BitWriter *bw); /* does not 'free(buffer)' */
Chris@1 51 void FLAC__bitwriter_clear(FLAC__BitWriter *bw);
Chris@1 52 void FLAC__bitwriter_dump(const FLAC__BitWriter *bw, FILE *out);
Chris@1 53
Chris@1 54 /*
Chris@1 55 * CRC functions
Chris@1 56 *
Chris@1 57 * non-const *bw because they have to cal FLAC__bitwriter_get_buffer()
Chris@1 58 */
Chris@1 59 FLAC__bool FLAC__bitwriter_get_write_crc16(FLAC__BitWriter *bw, FLAC__uint16 *crc);
Chris@1 60 FLAC__bool FLAC__bitwriter_get_write_crc8(FLAC__BitWriter *bw, FLAC__byte *crc);
Chris@1 61
Chris@1 62 /*
Chris@1 63 * info functions
Chris@1 64 */
Chris@1 65 FLAC__bool FLAC__bitwriter_is_byte_aligned(const FLAC__BitWriter *bw);
Chris@1 66 unsigned FLAC__bitwriter_get_input_bits_unconsumed(const FLAC__BitWriter *bw); /* can be called anytime, returns total # of bits unconsumed */
Chris@1 67
Chris@1 68 /*
Chris@1 69 * direct buffer access
Chris@1 70 *
Chris@1 71 * there may be no calls on the bitwriter between get and release.
Chris@1 72 * the bitwriter continues to own the returned buffer.
Chris@1 73 * before get, bitwriter MUST be byte aligned: check with FLAC__bitwriter_is_byte_aligned()
Chris@1 74 */
Chris@1 75 FLAC__bool FLAC__bitwriter_get_buffer(FLAC__BitWriter *bw, const FLAC__byte **buffer, size_t *bytes);
Chris@1 76 void FLAC__bitwriter_release_buffer(FLAC__BitWriter *bw);
Chris@1 77
Chris@1 78 /*
Chris@1 79 * write functions
Chris@1 80 */
Chris@1 81 FLAC__bool FLAC__bitwriter_write_zeroes(FLAC__BitWriter *bw, unsigned bits);
Chris@1 82 FLAC__bool FLAC__bitwriter_write_raw_uint32(FLAC__BitWriter *bw, FLAC__uint32 val, unsigned bits);
Chris@1 83 FLAC__bool FLAC__bitwriter_write_raw_int32(FLAC__BitWriter *bw, FLAC__int32 val, unsigned bits);
Chris@1 84 FLAC__bool FLAC__bitwriter_write_raw_uint64(FLAC__BitWriter *bw, FLAC__uint64 val, unsigned bits);
Chris@1 85 FLAC__bool FLAC__bitwriter_write_raw_uint32_little_endian(FLAC__BitWriter *bw, FLAC__uint32 val); /*only for bits=32*/
Chris@1 86 FLAC__bool FLAC__bitwriter_write_byte_block(FLAC__BitWriter *bw, const FLAC__byte vals[], unsigned nvals);
Chris@1 87 FLAC__bool FLAC__bitwriter_write_unary_unsigned(FLAC__BitWriter *bw, unsigned val);
Chris@1 88 unsigned FLAC__bitwriter_rice_bits(FLAC__int32 val, unsigned parameter);
Chris@1 89 #if 0 /* UNUSED */
Chris@1 90 unsigned FLAC__bitwriter_golomb_bits_signed(int val, unsigned parameter);
Chris@1 91 unsigned FLAC__bitwriter_golomb_bits_unsigned(unsigned val, unsigned parameter);
Chris@1 92 #endif
Chris@1 93 FLAC__bool FLAC__bitwriter_write_rice_signed(FLAC__BitWriter *bw, FLAC__int32 val, unsigned parameter);
Chris@1 94 FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, unsigned nvals, unsigned parameter);
Chris@1 95 #if 0 /* UNUSED */
Chris@1 96 FLAC__bool FLAC__bitwriter_write_golomb_signed(FLAC__BitWriter *bw, int val, unsigned parameter);
Chris@1 97 FLAC__bool FLAC__bitwriter_write_golomb_unsigned(FLAC__BitWriter *bw, unsigned val, unsigned parameter);
Chris@1 98 #endif
Chris@1 99 FLAC__bool FLAC__bitwriter_write_utf8_uint32(FLAC__BitWriter *bw, FLAC__uint32 val);
Chris@1 100 FLAC__bool FLAC__bitwriter_write_utf8_uint64(FLAC__BitWriter *bw, FLAC__uint64 val);
Chris@1 101 FLAC__bool FLAC__bitwriter_zero_pad_to_byte_boundary(FLAC__BitWriter *bw);
Chris@1 102
Chris@1 103 #endif