Changeset 661e782126cbc02d0d046b7f761dc7b898303fc2
- Timestamp:
- 09/21/05 00:48:30
(3 years ago)
- Author:
- Eric Petit <titer@videolan.org>
- git-committer:
- Eric Petit <titer@videolan.org> 1127256510 +0000
- git-parent:
[4a4a0f55059c5800101c89b55395a5807baf1eca]
- git-author:
- Eric Petit <titer@videolan.org> 1127256510 +0000
- Message:
visual/effects.c: compile fix
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2b6826a |
r661e782 |
|
| 379 | 379 | int16_t p_buffer1[FFT_BUFFER_SIZE]; /* Buffer on which we perform |
|---|
| 380 | 380 | the FFT (first channel) */ |
|---|
| 381 | | i_line = 0; |
|---|
| 382 | | |
|---|
| 383 | 381 | float *p_buffl = /* Original buffer */ |
|---|
| 384 | 382 | (float*)p_buffer->p_buffer; |
|---|
| … | … | |
| 386 | 384 | int16_t *p_buffs; /* int16_t converted buffer */ |
|---|
| 387 | 385 | int16_t *p_s16_buff = NULL; /* int16_t converted buffer */ |
|---|
| | 386 | |
|---|
| | 387 | i_line = 0; |
|---|
| 388 | 388 | |
|---|
| 389 | 389 | p_s16_buff = (int16_t*)malloc( |
|---|