Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
661e7821
Commit
661e7821
authored
Sep 20, 2005
by
Eric Petit
Browse files
visual/effects.c: compile fix
parent
4a4a0f55
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/visualization/visual/effects.c
View file @
661e7821
...
...
@@ -378,14 +378,14 @@ int spectrometer_Run(visual_effect_t * p_effect, aout_instance_t *p_aout,
int16_t
p_dest
[
FFT_BUFFER_SIZE
];
/* Adapted FFT result */
int16_t
p_buffer1
[
FFT_BUFFER_SIZE
];
/* Buffer on which we perform
the FFT (first channel) */
i_line
=
0
;
float
*
p_buffl
=
/* Original buffer */
(
float
*
)
p_buffer
->
p_buffer
;
int16_t
*
p_buffs
;
/* int16_t converted buffer */
int16_t
*
p_s16_buff
=
NULL
;
/* int16_t converted buffer */
i_line
=
0
;
p_s16_buff
=
(
int16_t
*
)
malloc
(
p_buffer
->
i_nb_samples
*
p_effect
->
i_nb_chans
*
sizeof
(
int16_t
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment