Commit 25fe8630 authored by Eli Friedman's avatar Eli Friedman Committed by Carl Eugen Hoyos

Silense one warning:

"passing argument 1 of ‘av_memcpy_backptr’ from incompatible pointer type"

Patch by Eli Friedman, eli D friedman A gmail

Originally committed as revision 23895 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 99267eb7
......@@ -1342,7 +1342,7 @@ static void synth_block_fcb_acb(WMAVoiceContext *s, GetBitContext *gb,
wmavoice_ipol2_coeffs, 4,
idx, 8, size);
} else
av_memcpy_backptr(excitation, sizeof(float) * block_pitch,
av_memcpy_backptr((uint8_t *) excitation, sizeof(float) * block_pitch,
sizeof(float) * size);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment