Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
e2888d20
Commit
e2888d20
authored
Feb 15, 2008
by
Dennis van Amerongen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/codec/faad.c: backport [25080] channel order fix for multichannel AAC
parent
2c266656
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
NEWS
NEWS
+1
-0
THANKS
THANKS
+3
-2
modules/codec/faad.c
modules/codec/faad.c
+2
-2
No files found.
NEWS
View file @
e2888d20
...
...
@@ -22,6 +22,7 @@ Audio filter:
Audio output:
* Fixed 5.1 audio on ALSA
* Fixed channel order for multichannel AAC
Access:
* Fixed some RTSP hanging and user/password passing through RTSP URLs
...
...
THANKS
View file @
e2888d20
...
...
@@ -17,6 +17,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
André Weber <WeberAndre at gmx d0t de> - AAC ordering)
Andres Krapf <dae at via.ecp.fr> - FreeBSD port and tests, KDE interface
Andrey Brilevskiy <director at macwest.ru> - Russian translation
Andrea Guzzo <xant at xant dot net> - Digital cameras support (dc1394)
...
...
@@ -145,8 +146,8 @@ Remco Poortinga <poortinga at telin.nl> - IPv6 multicast patch
Rene Gollent <rgollent at u.arizona.edu> - BeOS interface fix
Roine Gustafsson <roine at popstar.com> - spudec bug fixes
Rudolf Cornelissen <rag.cornelissen at inter.nl.net> - BeOS fixes
Scott Caudle <dorkmanzcot at gmail dot com> - Visualization, WX
improvements
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
Simon Damkjær Andersen <simondamkjaer at gmail.com> - playmode icons and the entire Fullscreen Panel design for the OS GUI (v0.8.6)
Steve Lhomme <steve dot lhomme at free dot fr> - MSVC fixes and Matroska enhancements
...
...
modules/codec/faad.c
View file @
e2888d20
...
...
@@ -418,9 +418,9 @@ static void DoReordering( decoder_t *p_dec,
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