Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
13
Issues
13
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
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
GSoC
GSoC2018
macOS
vlc
Commits
3717fcb7
Commit
3717fcb7
authored
Feb 07, 2018
by
François Cartegnie
🤞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
codec: faad: fix off by one
parent
a510715f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/codec/faad.c
modules/codec/faad.c
+1
-1
No files found.
modules/codec/faad.c
View file @
3717fcb7
...
@@ -514,7 +514,7 @@ static int DecodeBlock( decoder_t *p_dec, block_t *p_block )
...
@@ -514,7 +514,7 @@ static int DecodeBlock( decoder_t *p_dec, block_t *p_block )
p_dec
->
fmt_out
.
audio
.
i_physical_channels
=
0
;
p_dec
->
fmt_out
.
audio
.
i_physical_channels
=
0
;
uint8_t
pi_neworder_table
[
AOUT_CHAN_MAX
];
uint8_t
pi_neworder_table
[
AOUT_CHAN_MAX
];
uint32_t
pi_faad_channels_positions
[
FAAD_CHANNEL_ID_COUNT
]
=
{
0
};
uint32_t
pi_faad_channels_positions
[
FAAD_CHANNEL_ID_COUNT
+
1
]
=
{
0
};
bool
b_reorder
=
false
;
bool
b_reorder
=
false
;
if
(
p_dec
->
fmt_out
.
audio
.
channel_type
==
AUDIO_CHANNEL_TYPE_BITMAP
)
if
(
p_dec
->
fmt_out
.
audio
.
channel_type
==
AUDIO_CHANNEL_TYPE_BITMAP
)
...
...
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