Changeset d5b5b74679e4a5ae7353dacc87d6991f9325156e
- Timestamp:
- 28/01/08 17:37:31
(9 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1201538251 +0000
- git-parent:
[b2108b39f8c3a590c879de982fc0c4da88bed4bd]
- git-author:
- Rafaël Carré <funman@videolan.org> 1201538251 +0000
- Message:
aout_DecNewBuffer: remove unused parameter
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r62ffefd |
rd5b5b74 |
|
| 135 | 135 | aout_input_t * __aout_DecNew( vlc_object_t *, aout_instance_t **, audio_sample_format_t *, audio_replay_gain_t * ); |
|---|
| 136 | 136 | int aout_DecDelete ( aout_instance_t *, aout_input_t * ); |
|---|
| 137 | | aout_buffer_t * aout_DecNewBuffer( aout_instance_t *, aout_input_t *, size_t ); |
|---|
| | 137 | aout_buffer_t * aout_DecNewBuffer( aout_input_t *, size_t ); |
|---|
| 138 | 138 | void aout_DecDeleteBuffer( aout_instance_t *, aout_input_t *, aout_buffer_t * ); |
|---|
| 139 | 139 | int aout_DecPlay( aout_instance_t *, aout_input_t *, aout_buffer_t *, int i_input_rate ); |
|---|
| r99fab90 |
rd5b5b74 |
|
| 262 | 262 | * aout_DecNewBuffer : ask for a new empty buffer |
|---|
| 263 | 263 | *****************************************************************************/ |
|---|
| 264 | | aout_buffer_t * aout_DecNewBuffer( aout_instance_t * p_aout, |
|---|
| 265 | | aout_input_t * p_input, |
|---|
| | 264 | aout_buffer_t * aout_DecNewBuffer( aout_input_t * p_input, |
|---|
| 266 | 265 | size_t i_nb_samples ) |
|---|
| 267 | 266 | { |
|---|
| r1b09c02 |
rd5b5b74 |
|
| 1095 | 1095 | } |
|---|
| 1096 | 1096 | |
|---|
| 1097 | | p_buffer = aout_DecNewBuffer( p_sys->p_aout, p_sys->p_aout_input, |
|---|
| 1098 | | i_samples ); |
|---|
| | 1097 | p_buffer = aout_DecNewBuffer( p_sys->p_aout_input, i_samples ); |
|---|
| 1099 | 1098 | |
|---|
| 1100 | 1099 | return p_buffer; |
|---|