1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

libopencore-amr: Make the opaque encoder pointer a void*

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2011-04-12 23:56:41 +03:00
parent dbff4da914
commit 57ddffe843

View File

@ -73,7 +73,7 @@ static int getBitrateMode(int bitrate)
typedef struct AMRContext {
int frameCount;
void *decState;
int *enstate;
void *enstate;
int enc_bitrate;
} AMRContext;