Changeset 7c4d81ac3d2670f0330209c2d480250dc59234b9
- Timestamp:
- 08/06/06 15:11:49
(2 years ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1154869909 +0000
- git-parent:
[4c23c78cdd318473410fd798588f9b620401a280]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1154869909 +0000
- Message:
Use C-style comments
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8e394d7 |
r7c4d81a |
|
| 178 | 178 | if( p_aout->mixer.mixer.i_rate == p_filter->input.i_rate ) |
|---|
| 179 | 179 | { |
|---|
| 180 | | if( //p_filter->b_continuity && /* What difference does it make ? :) */ |
|---|
| | 180 | if( /*p_filter->b_continuity && /--* What difference does it make ? :) */ |
|---|
| 181 | 181 | p_filter->p_sys->i_old_wing && |
|---|
| 182 | 182 | p_in_buf->i_size >= |
|---|
| … | … | |
| 276 | 276 | /* Just copy the samples */ |
|---|
| 277 | 277 | memcpy( p_out, p_in, |
|---|
| 278 | | p_filter->input.i_bytes_per_frame ); |
|---|
| | 278 | p_filter->input.i_bytes_per_frame ); |
|---|
| 279 | 279 | p_in += i_nb_channels; |
|---|
| 280 | 280 | p_out += i_nb_channels; |
|---|