summaryrefslogtreecommitdiff
path: root/libavcodec/libopencore-amr.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-04-12 23:56:41 +0300
committerMartin Storsjö <martin@martin.st>2011-04-13 11:30:38 +0300
commit57ddffe843b17b741859f9e669433d086dcec09c (patch)
tree6a2e172a0ea1392f2b66b94ff04c127c8da84347 /libavcodec/libopencore-amr.c
parentdbff4da91468a5079d017b99f961cb8bfc4e019c (diff)
libopencore-amr: Make the opaque encoder pointer a void*
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/libopencore-amr.c')
-rw-r--r--libavcodec/libopencore-amr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libopencore-amr.c b/libavcodec/libopencore-amr.c
index c11c924cbe..52dfe10e5e 100644
--- a/libavcodec/libopencore-amr.c
+++ b/libavcodec/libopencore-amr.c
@@ -73,7 +73,7 @@ static int getBitrateMode(int bitrate)
typedef struct AMRContext {
int frameCount;
void *decState;
- int *enstate;
+ void *enstate;
int enc_bitrate;
} AMRContext;