comparison g726.c @ 9411:4cb7c65fc775 libavcodec

Split bitstream.h, put the bitstream writer stuff in the new file put_bits.h.
author stefano
date Sun, 12 Apr 2009 08:35:26 +0000
parents 54bc8a2727b0
children 0dce4fe6e6f3
comparison
equal deleted inserted replaced
9410:f7bd7e90ef9f 9411:4cb7c65fc775
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 */ 23 */
24 #include <limits.h> 24 #include <limits.h>
25 #include "avcodec.h" 25 #include "avcodec.h"
26 #include "bitstream.h" 26 #include "bitstream.h"
27 #include "put_bits.h"
27 28
28 /** 29 /**
29 * G.726 11bit float. 30 * G.726 11bit float.
30 * G.726 Standard uses rather odd 11bit floating point arithmentic for 31 * G.726 Standard uses rather odd 11bit floating point arithmentic for
31 * numerous occasions. It's a mistery to me why they did it this way 32 * numerous occasions. It's a mistery to me why they did it this way