# HG changeset patch # User reimar # Date 1225626769 0 # Node ID 39d9ff988bc0ac89bcc59ba7b5dc279fefe18766 # Parent c0368529963442fc6593c15e7e31ddade4b5293f Avoid pointless casting of void* diff -r c03685299634 -r 39d9ff988bc0 libmpcodecs/ae_twolame.c --- a/libmpcodecs/ae_twolame.c Sun Nov 02 11:48:20 2008 +0000 +++ b/libmpcodecs/ae_twolame.c Sun Nov 02 11:52:49 2008 +0000 @@ -39,7 +39,7 @@ static int bind_twolame(audio_encoder_t *encoder, muxer_stream_t *mux_a) { - mpae_twolame_ctx *ctx = (mpae_twolame_ctx *) encoder->priv; + mpae_twolame_ctx *ctx = encoder->priv; mux_a->wf = malloc(sizeof(WAVEFORMATEX)+256); mux_a->wf->wFormatTag = 0x50; @@ -83,7 +83,7 @@ static int encode_twolame(audio_encoder_t *encoder, uint8_t *dest, void *src, int len, int max_size) { - mpae_twolame_ctx *ctx = (mpae_twolame_ctx *)encoder->priv; + mpae_twolame_ctx *ctx = encoder->priv; int ret_size = 0, r2; len /= (2*encoder->params.channels); @@ -139,7 +139,7 @@ else mp_msg(MSGT_MENCODER, MSGL_ERR, "ae_twolame, Twolame can't encode > 2 channels, exiting\n"); - ctx = (mpae_twolame_ctx *) calloc(1, sizeof(mpae_twolame_ctx)); + ctx = calloc(1, sizeof(mpae_twolame_ctx)); if(ctx == NULL) { mp_msg(MSGT_MENCODER, MSGL_ERR, "ae_twolame, couldn't alloc a %d bytes context, exiting\n", sizeof(mpae_twolame_ctx));