Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
4629d221
Commit
4629d221
authored
Feb 10, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AAC reordering fix. Patch by Sebastian Jenny and atmo. THANKS them.
Close #493
parent
54e84562
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
THANKS
THANKS
+2
-1
modules/codec/faad.c
modules/codec/faad.c
+2
-2
No files found.
THANKS
View file @
4629d221
...
...
@@ -19,7 +19,7 @@ Alex Izvorski <aizvorski at gmail dot com> - some more x264 options
Andrea Guzzo <xant at xant dot net> - dc1394 firewire support
André de Barros Martins Ribeiro <andrerib at ajato.com.br> - Brazilian portuguese localization
Andre Pang <adre.pang at csiro dot au> - Annodex support
Andre Weber <WeberAndre at gmx d0t de> - Qt4 patches
Andre Weber <WeberAndre at gmx d0t de> - Qt4 patches
, AAC ordering pathes
Andres Krapf <dae at via.ecp.fr> - FreeBSD port and tests, KDE interface
Andrew Zaikin <andrew dot zaikin at gmail dot com> - Config saving fixes
Andrey Brilevskiy <director at macwest.ru> - Russian translation
...
...
@@ -194,6 +194,7 @@ Roman Bednarek <roman at mikronika.com.pl> - MPL2 subtitles support
Rudolf Cornelissen <rag.cornelissen at inter.nl.net> - BeOS fixes
Sašo Kiselkov <skiselkov _at_ gmail dot com> - RTSP session timeout fix for some STBs, multipass x264 patch
Scott Caudle <dorkmanzcot at gmail dot com> - Visualization, WX improvements
Sebastian Jenny <jenny - sebastian &t gmail - com > - AAC decoding channel ordering fix.
Sebastien Chaumat <Sebastien.Chaumat at ens-lyon.fr> - YOPY port tests
Sidney Doria <ssdoria qt gmail.com> - Brazilian Portuguese localisation
Simon Damkjær Andersen <simondamkjaer at gmail.com> - playmode icons and the entire Fullscreen Panel design for the OSX GUI (v0.8.6)
...
...
modules/codec/faad.c
View file @
4629d221
...
...
@@ -447,9 +447,9 @@ static void DoReordering( uint32_t *p_out, uint32_t *p_in, int i_samples,
int
i
,
j
,
k
;
/* Find the channels mapping */
for
(
k
=
0
,
j
=
0
;
k
<
i_nb_channels
;
k
++
)
for
(
i
=
0
,
j
=
0
;
i
<
MAX_CHANNEL_POSITIONS
;
i
++
)
{
for
(
i
=
0
;
i
<
MAX_CHANNEL_POSITIONS
;
i
++
)
for
(
k
=
0
;
k
<
i_nb_channels
;
k
++
)
{
if
(
pi_channels_ordered
[
i
]
==
pi_chan_positions
[
k
]
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment