Changeset 1e85ac0bb43423e5f5f63c111842ff6a5c371034
- Timestamp:
- 08/29/06 11:14:57
(2 years ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1156842897 +0000
- git-parent:
[8a225a651e78f818d015f157e1929f706967de7d]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1156842897 +0000
- Message:
Lower priority of headphone channel_mixer
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8a793c9 |
r1e85ac0 |
|
| 97 | 97 | add_submodule(); |
|---|
| 98 | 98 | set_description( _("Headphone virtual spatialization effect") ); |
|---|
| 99 | | set_capability( "audio filter2", 100 ); |
|---|
| | 99 | set_capability( "audio filter2", 0 ); |
|---|
| 100 | 100 | set_callbacks( OpenFilter, CloseFilter ); |
|---|
| 101 | 101 | vlc_module_end(); |
|---|
| … | … | |
| 653 | 653 | { |
|---|
| 654 | 654 | filter_t *p_filter = (filter_t *)p_this; |
|---|
| 655 | | filter_sys_t *p_sys = p_filter->p_sys; |
|---|
| 656 | 655 | |
|---|
| 657 | 656 | if( p_filter->p_sys != NULL ) |
|---|
| … | … | |
| 668 | 667 | p_filter->p_sys = NULL; |
|---|
| 669 | 668 | } |
|---|
| 670 | | |
|---|
| 671 | | if( p_sys) free( p_sys ); |
|---|
| 672 | 669 | } |
|---|
| 673 | 670 | |
|---|
| … | … | |
| 686 | 683 | |
|---|
| 687 | 684 | i_out_size = p_block->i_samples * |
|---|
| 688 | | p_filter->fmt_out.audio.i_bitspersample * |
|---|
| 689 | | p_filter->fmt_out.audio.i_channels / 8; |
|---|
| | 685 | p_filter->fmt_out.audio.i_bitspersample/8 * |
|---|
| | 686 | aout_FormatNbChannels( &(p_filter->fmt_out.audio) ); |
|---|
| 690 | 687 | |
|---|
| 691 | 688 | p_out = p_filter->pf_audio_buffer_new( p_filter, i_out_size ); |
|---|