Changeset 4629d221bab3e49b0bf645fd72024d723aeddeaf

Show
Ignore:
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
  • THANKS

    r4fb40a4 r4629d22  
    2020André de Barros Martins Ribeiro <andrerib at ajato.com.br> - Brazilian portuguese localization 
    2121Andre Pang <adre.pang at csiro dot au> - Annodex support 
    22 Andre Weber <WeberAndre at gmx d0t de> - Qt4 patches 
     22Andre Weber <WeberAndre at gmx d0t de> - Qt4 patches, AAC ordering pathes 
    2323Andres Krapf <dae at via.ecp.fr> - FreeBSD port and tests, KDE interface 
    2424Andrew Zaikin <andrew dot zaikin at gmail dot com> - Config saving fixes 
     
    195195Sašo Kiselkov <skiselkov _at_ gmail dot com> - RTSP session timeout fix for some STBs, multipass x264 patch 
    196196Scott Caudle <dorkmanzcot at gmail dot com> - Visualization, WX improvements 
     197Sebastian Jenny <jenny - sebastian &t gmail - com > - AAC decoding channel ordering fix. 
    197198Sebastien Chaumat <Sebastien.Chaumat at ens-lyon.fr> - YOPY port tests 
    198199Sidney Doria <ssdoria qt gmail.com> - Brazilian Portuguese localisation 
  • modules/codec/faad.c

    r079a181 r4629d22  
    448448 
    449449    /* 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++ ) 
    453453        { 
    454454            if( pi_channels_ordered[i] == pi_chan_positions[k] )