diff options
author | Martin Storsjö <martin@martin.st> | 2011-04-12 23:56:41 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2011-04-13 11:30:38 +0300 |
commit | 57ddffe843b17b741859f9e669433d086dcec09c (patch) | |
tree | 6a2e172a0ea1392f2b66b94ff04c127c8da84347 | |
parent | dbff4da91468a5079d017b99f961cb8bfc4e019c (diff) | |
download | ffmpeg-57ddffe843b17b741859f9e669433d086dcec09c.tar.gz |
libopencore-amr: Make the opaque encoder pointer a void*
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavcodec/libopencore-amr.c | 2 |
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; |