]> git.sesse.net Git - ffmpeg/blob - libavcodec/put_bits.h
g726dec: set channel layout at initialization instead of validating it
[ffmpeg] / libavcodec / put_bits.h
1 /*
2  * copyright (c) 2004 Michael Niedermayer <michaelni@gmx.at>
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * bitstream writer API
24  */
25
26 #ifndef AVCODEC_PUT_BITS_H
27 #define AVCODEC_PUT_BITS_H
28
29 #include <stdint.h>
30 #include <stdlib.h>
31 #include <assert.h>
32 #include "libavutil/bswap.h"
33 #include "libavutil/common.h"
34 #include "libavutil/intreadwrite.h"
35 #include "libavutil/log.h"
36 #include "mathops.h"
37 #include "config.h"
38
39 typedef struct PutBitContext {
40     uint32_t bit_buf;
41     int bit_left;
42     uint8_t *buf, *buf_ptr, *buf_end;
43     int size_in_bits;
44 } PutBitContext;
45
46 /**
47  * Initialize the PutBitContext s.
48  *
49  * @param buffer the buffer where to put bits
50  * @param buffer_size the size in bytes of buffer
51  */
52 static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
53 {
54     if(buffer_size < 0) {
55         buffer_size = 0;
56         buffer = NULL;
57     }
58
59     s->size_in_bits= 8*buffer_size;
60     s->buf = buffer;
61     s->buf_end = s->buf + buffer_size;
62     s->buf_ptr = s->buf;
63     s->bit_left=32;
64     s->bit_buf=0;
65 }
66
67 /**
68  * @return the total number of bits written to the bitstream.
69  */
70 static inline int put_bits_count(PutBitContext *s)
71 {
72     return (s->buf_ptr - s->buf) * 8 + 32 - s->bit_left;
73 }
74
75 /**
76  * Pad the end of the output stream with zeros.
77  */
78 static inline void flush_put_bits(PutBitContext *s)
79 {
80 #ifndef BITSTREAM_WRITER_LE
81     if (s->bit_left < 32)
82         s->bit_buf<<= s->bit_left;
83 #endif
84     while (s->bit_left < 32) {
85         /* XXX: should test end of buffer */
86 #ifdef BITSTREAM_WRITER_LE
87         *s->buf_ptr++=s->bit_buf;
88         s->bit_buf>>=8;
89 #else
90         *s->buf_ptr++=s->bit_buf >> 24;
91         s->bit_buf<<=8;
92 #endif
93         s->bit_left+=8;
94     }
95     s->bit_left=32;
96     s->bit_buf=0;
97 }
98
99 #ifdef BITSTREAM_WRITER_LE
100 #define avpriv_align_put_bits align_put_bits_unsupported_here
101 #define avpriv_put_string ff_put_string_unsupported_here
102 #define avpriv_copy_bits avpriv_copy_bits_unsupported_here
103 #else
104 /**
105  * Pad the bitstream with zeros up to the next byte boundary.
106  */
107 void avpriv_align_put_bits(PutBitContext *s);
108
109 /**
110  * Put the string string in the bitstream.
111  *
112  * @param terminate_string 0-terminates the written string if value is 1
113  */
114 void avpriv_put_string(PutBitContext *pb, const char *string, int terminate_string);
115
116 /**
117  * Copy the content of src to the bitstream.
118  *
119  * @param length the number of bits of src to copy
120  */
121 void avpriv_copy_bits(PutBitContext *pb, const uint8_t *src, int length);
122 #endif
123
124 /**
125  * Write up to 31 bits into a bitstream.
126  * Use put_bits32 to write 32 bits.
127  */
128 static inline void put_bits(PutBitContext *s, int n, unsigned int value)
129 {
130     unsigned int bit_buf;
131     int bit_left;
132
133     assert(n <= 31 && value < (1U << n));
134
135     bit_buf = s->bit_buf;
136     bit_left = s->bit_left;
137
138     /* XXX: optimize */
139 #ifdef BITSTREAM_WRITER_LE
140     bit_buf |= value << (32 - bit_left);
141     if (n >= bit_left) {
142         AV_WL32(s->buf_ptr, bit_buf);
143         s->buf_ptr+=4;
144         bit_buf = (bit_left==32)?0:value >> bit_left;
145         bit_left+=32;
146     }
147     bit_left-=n;
148 #else
149     if (n < bit_left) {
150         bit_buf = (bit_buf<<n) | value;
151         bit_left-=n;
152     } else {
153         bit_buf<<=bit_left;
154         bit_buf |= value >> (n - bit_left);
155         AV_WB32(s->buf_ptr, bit_buf);
156         s->buf_ptr+=4;
157         bit_left+=32 - n;
158         bit_buf = value;
159     }
160 #endif
161
162     s->bit_buf = bit_buf;
163     s->bit_left = bit_left;
164 }
165
166 static inline void put_sbits(PutBitContext *pb, int n, int32_t value)
167 {
168     assert(n >= 0 && n <= 31);
169
170     put_bits(pb, n, value & ((1<<n)-1));
171 }
172
173 /**
174  * Write exactly 32 bits into a bitstream.
175  */
176 static void av_unused put_bits32(PutBitContext *s, uint32_t value)
177 {
178     int lo = value & 0xffff;
179     int hi = value >> 16;
180 #ifdef BITSTREAM_WRITER_LE
181     put_bits(s, 16, lo);
182     put_bits(s, 16, hi);
183 #else
184     put_bits(s, 16, hi);
185     put_bits(s, 16, lo);
186 #endif
187 }
188
189 /**
190  * Return the pointer to the byte where the bitstream writer will put
191  * the next bit.
192  */
193 static inline uint8_t* put_bits_ptr(PutBitContext *s)
194 {
195         return s->buf_ptr;
196 }
197
198 /**
199  * Skip the given number of bytes.
200  * PutBitContext must be flushed & aligned to a byte boundary before calling this.
201  */
202 static inline void skip_put_bytes(PutBitContext *s, int n)
203 {
204         assert((put_bits_count(s)&7)==0);
205         assert(s->bit_left==32);
206         s->buf_ptr += n;
207 }
208
209 /**
210  * Skip the given number of bits.
211  * Must only be used if the actual values in the bitstream do not matter.
212  * If n is 0 the behavior is undefined.
213  */
214 static inline void skip_put_bits(PutBitContext *s, int n)
215 {
216     s->bit_left -= n;
217     s->buf_ptr-= 4*(s->bit_left>>5);
218     s->bit_left &= 31;
219 }
220
221 /**
222  * Change the end of the buffer.
223  *
224  * @param size the new size in bytes of the buffer where to put bits
225  */
226 static inline void set_put_bits_buffer_size(PutBitContext *s, int size)
227 {
228     s->buf_end= s->buf + size;
229 }
230
231 #endif /* AVCODEC_PUT_BITS_H */