Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
21e5dd93
Commit
21e5dd93
authored
May 26, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aacpsy: fix "may be used uninitialized" warning
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
0bf90ceb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
aacpsy.c
libavcodec/aacpsy.c
+1
-1
No files found.
libavcodec/aacpsy.c
View file @
21e5dd93
...
@@ -563,7 +563,7 @@ static void psy_3gpp_analyze_channel(FFPsyContext *ctx, int channel,
...
@@ -563,7 +563,7 @@ static void psy_3gpp_analyze_channel(FFPsyContext *ctx, int channel,
AacPsyChannel
*
pch
=
&
pctx
->
ch
[
channel
];
AacPsyChannel
*
pch
=
&
pctx
->
ch
[
channel
];
int
start
=
0
;
int
start
=
0
;
int
i
,
w
,
g
;
int
i
,
w
,
g
;
float
desired_bits
,
desired_pe
,
delta_pe
,
reduction
,
spread_en
[
128
]
=
{
0
};
float
desired_bits
,
desired_pe
,
delta_pe
,
reduction
=
NAN
,
spread_en
[
128
]
=
{
0
};
float
a
=
0
.
0
f
,
active_lines
=
0
.
0
f
,
norm_fac
=
0
.
0
f
;
float
a
=
0
.
0
f
,
active_lines
=
0
.
0
f
,
norm_fac
=
0
.
0
f
;
float
pe
=
pctx
->
chan_bitrate
>
32000
?
0
.
0
f
:
FFMAX
(
50
.
0
f
,
100
.
0
f
-
pctx
->
chan_bitrate
*
100
.
0
f
/
32000
.
0
f
);
float
pe
=
pctx
->
chan_bitrate
>
32000
?
0
.
0
f
:
FFMAX
(
50
.
0
f
,
100
.
0
f
-
pctx
->
chan_bitrate
*
100
.
0
f
/
32000
.
0
f
);
const
int
num_bands
=
ctx
->
num_bands
[
wi
->
num_windows
==
8
];
const
int
num_bands
=
ctx
->
num_bands
[
wi
->
num_windows
==
8
];
...
...
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