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
e7bfa12b
Commit
e7bfa12b
authored
Mar 13, 2001
by
Renaud Dartus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixing of PowerPC bug ( I hope :) )
parent
a4dc58c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
src/ac3_decoder/ac3_bit_allocate.c
src/ac3_decoder/ac3_bit_allocate.c
+2
-3
No files found.
src/ac3_decoder/ac3_bit_allocate.c
View file @
e7bfa12b
...
...
@@ -283,7 +283,7 @@ void bit_allocate (ac3dec_t * p_ac3dec)
static
void
ba_compute_psd
(
bit_allocate_t
*
p_bit
,
s16
start
,
s16
end
,
s16
exps
[])
{
int
bin
,
i
,
j
,
k
;
int
bin
,
j
,
k
;
s16
lastbin
=
0
;
/* Map the exponents into dBs */
...
...
@@ -300,9 +300,8 @@ static void ba_compute_psd (bit_allocate_t * p_bit, s16 start, s16 end, s16 exps
p_bit
->
bndpsd
[
k
]
=
p_bit
->
psd
[
j
];
j
++
;
for
(
i
=
j
;
i
<
lastbin
;
i
++
)
{
for
(
;
j
<
lastbin
;
j
++
)
{
p_bit
->
bndpsd
[
k
]
=
logadd
(
p_bit
->
bndpsd
[
k
],
p_bit
->
psd
[
j
]);
j
++
;
}
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