diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-01 17:57:30 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-01 17:57:30 +0200 |
commit | d506deaeaa98013505241d8149d82327efea0379 (patch) | |
tree | e52a595f26c7998219680e1d7f13df0119eb0874 | |
parent | 284cfc7180cc7d188ced8d5bb76360fe50219965 (diff) | |
download | ffmpeg-d506deaeaa98013505241d8149d82327efea0379.tar.gz |
avutil/fixed_dsp: remove redundant cast
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavutil/fixed_dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/fixed_dsp.c b/libavutil/fixed_dsp.c index 6aceaac279..b99fea519e 100644 --- a/libavutil/fixed_dsp.c +++ b/libavutil/fixed_dsp.c @@ -90,7 +90,7 @@ static void vector_fmul_window_fixed_c(int32_t *dst, const int32_t *src0, AVFixedDSPContext * avpriv_alloc_fixed_dsp(int bit_exact) { - AVFixedDSPContext * fdsp = (AVFixedDSPContext*)av_malloc(sizeof(AVFixedDSPContext)); + AVFixedDSPContext * fdsp = av_malloc(sizeof(AVFixedDSPContext)); fdsp->vector_fmul_window_scaled = vector_fmul_window_fixed_scaled_c; fdsp->vector_fmul_window = vector_fmul_window_fixed_c; |