Changeset 4629d221bab3e49b0bf645fd72024d723aeddeaf
- Timestamp:
- 02/10/08 20:02:18
(6 months ago)
- Author:
- Jean-Baptiste Kempf <jb@videolan.org>
- git-committer:
- Jean-Baptiste Kempf <jb@videolan.org> 1202670138 +0000
- git-parent:
[54e8456263f8994e792be65907d341682bbdcc28]
- git-author:
- Jean-Baptiste Kempf <jb@videolan.org> 1202670138 +0000
- Message:
AAC reordering fix. Patch by Sebastian Jenny and atmo. THANKS them.
Close #493
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r4fb40a4 |
r4629d22 |
|
| 20 | 20 | André de Barros Martins Ribeiro <andrerib at ajato.com.br> - Brazilian portuguese localization |
|---|
| 21 | 21 | Andre Pang <adre.pang at csiro dot au> - Annodex support |
|---|
| 22 | | Andre Weber <WeberAndre at gmx d0t de> - Qt4 patches |
|---|
| | 22 | Andre Weber <WeberAndre at gmx d0t de> - Qt4 patches, AAC ordering pathes |
|---|
| 23 | 23 | Andres Krapf <dae at via.ecp.fr> - FreeBSD port and tests, KDE interface |
|---|
| 24 | 24 | Andrew Zaikin <andrew dot zaikin at gmail dot com> - Config saving fixes |
|---|
| … | … | |
| 195 | 195 | Sašo Kiselkov <skiselkov _at_ gmail dot com> - RTSP session timeout fix for some STBs, multipass x264 patch |
|---|
| 196 | 196 | Scott Caudle <dorkmanzcot at gmail dot com> - Visualization, WX improvements |
|---|
| | 197 | Sebastian Jenny <jenny - sebastian &t gmail - com > - AAC decoding channel ordering fix. |
|---|
| 197 | 198 | Sebastien Chaumat <Sebastien.Chaumat at ens-lyon.fr> - YOPY port tests |
|---|
| 198 | 199 | Sidney Doria <ssdoria qt gmail.com> - Brazilian Portuguese localisation |
|---|
| r079a181 |
r4629d22 |
|
| 448 | 448 | |
|---|
| 449 | 449 | /* Find the channels mapping */ |
|---|
| 450 | | for( k = 0, j = 0; k < i_nb_channels; k++ ) |
|---|
| 451 | | { |
|---|
| 452 | | for( i = 0; i < MAX_CHANNEL_POSITIONS; i++ ) |
|---|
| | 450 | for( i = 0, j = 0; i < MAX_CHANNEL_POSITIONS; i++ ) |
|---|
| | 451 | { |
|---|
| | 452 | for( k = 0; k < i_nb_channels; k++ ) |
|---|
| 453 | 453 | { |
|---|
| 454 | 454 | if( pi_channels_ordered[i] == pi_chan_positions[k] ) |
|---|