comparison g726.c @ 2398:582e635cfa08 libavcodec

common.c -> bitstream.c (and the single non bitstream func -> utils.c) common.h -> common.h/bitstream.h
author michael
date Wed, 29 Dec 2004 17:50:25 +0000
parents 9a481659d7cb
children d1609cfeb1d0
comparison
equal deleted inserted replaced
2397:a579ef4a4f4a 2398:582e635cfa08
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */ 21 */
22 #include <limits.h> 22 #include <limits.h>
23 #include "avcodec.h" 23 #include "avcodec.h"
24 #include "common.h" 24 #include "common.h"
25 #include "bitstream.h"
25 26
26 /** 27 /**
27 * G.726 11bit float. 28 * G.726 11bit float.
28 * G.726 Standard uses rather odd 11bit floating point arithmentic for 29 * G.726 Standard uses rather odd 11bit floating point arithmentic for
29 * numerous occasions. It's a mistery to me why they did it this way 30 * numerous occasions. It's a mistery to me why they did it this way