summaryrefslogtreecommitdiff
path: root/apps/codecs/libcook/cook.h
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2009-05-11 23:35:50 +0000
committerMohamed Tarek <mt@rockbox.org>2009-05-11 23:35:50 +0000
commit0cb3ad58b3033ec1b78cc74943775e27ae7faeca (patch)
tree4c3a648b639b9f0f442f2594543e6eaaba430618 /apps/codecs/libcook/cook.h
parent685cee87bedc06549fba38ea87f1d3461ba4a0fe (diff)
downloadrockbox-0cb3ad58b3033ec1b78cc74943775e27ae7faeca.tar.gz
rockbox-0cb3ad58b3033ec1b78cc74943775e27ae7faeca.zip
-Took cook_random() from an old cook.c revision [6 mar 2007], which is a
simple RNG, to eliminate the need for lfg.c/h. -Remove lfg.c/h and md5.c/h as they are no longer needed and use the more common form of my name in docs/COMMITTERS. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20915 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libcook/cook.h')
-rw-r--r--apps/codecs/libcook/cook.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/codecs/libcook/cook.h b/apps/codecs/libcook/cook.h
index e34883255b..ee60ba01c9 100644
--- a/apps/codecs/libcook/cook.h
+++ b/apps/codecs/libcook/cook.h
@@ -23,7 +23,6 @@
23#define _COOK_H 23#define _COOK_H
24 24
25#include <stdint.h> 25#include <stdint.h>
26#include "libavutil/lfg.h"
27#include "bitstream.h" 26#include "bitstream.h"
28#include "bytestream.h" 27#include "bytestream.h"
29#include "rm2wav.h" 28#include "rm2wav.h"
@@ -66,7 +65,7 @@ typedef struct cook {
66 int bits_per_subpacket; 65 int bits_per_subpacket;
67 int cookversion; 66 int cookversion;
68 /* states */ 67 /* states */
69 AVLFG random_state; 68 int random_state;
70 69
71 /* gain buffers */ 70 /* gain buffers */
72 cook_gains gains1; 71 cook_gains gains1;