Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
2927b61c
Commit
2927b61c
authored
Jul 18, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/af_dynaudnorm: Use av_frame_get_channels()
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
f8e4d379
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
af_dynaudnorm.c
libavfilter/af_dynaudnorm.c
+3
-3
No files found.
libavfilter/af_dynaudnorm.c
View file @
2927b61c
...
@@ -334,7 +334,7 @@ static double find_peak_magnitude(AVFrame *frame, int channel)
...
@@ -334,7 +334,7 @@ static double find_peak_magnitude(AVFrame *frame, int channel)
int
c
,
i
;
int
c
,
i
;
if
(
channel
==
-
1
)
{
if
(
channel
==
-
1
)
{
for
(
c
=
0
;
c
<
frame
->
channels
;
c
++
)
{
for
(
c
=
0
;
c
<
av_frame_get_channels
(
frame
)
;
c
++
)
{
double
*
data_ptr
=
(
double
*
)
frame
->
extended_data
[
c
];
double
*
data_ptr
=
(
double
*
)
frame
->
extended_data
[
c
];
for
(
i
=
0
;
i
<
frame
->
nb_samples
;
i
++
)
for
(
i
=
0
;
i
<
frame
->
nb_samples
;
i
++
)
...
@@ -356,7 +356,7 @@ static double compute_frame_rms(AVFrame *frame, int channel)
...
@@ -356,7 +356,7 @@ static double compute_frame_rms(AVFrame *frame, int channel)
int
c
,
i
;
int
c
,
i
;
if
(
channel
==
-
1
)
{
if
(
channel
==
-
1
)
{
for
(
c
=
0
;
c
<
frame
->
channels
;
c
++
)
{
for
(
c
=
0
;
c
<
av_frame_get_channels
(
frame
)
;
c
++
)
{
const
double
*
data_ptr
=
(
double
*
)
frame
->
extended_data
[
c
];
const
double
*
data_ptr
=
(
double
*
)
frame
->
extended_data
[
c
];
for
(
i
=
0
;
i
<
frame
->
nb_samples
;
i
++
)
{
for
(
i
=
0
;
i
<
frame
->
nb_samples
;
i
++
)
{
...
@@ -364,7 +364,7 @@ static double compute_frame_rms(AVFrame *frame, int channel)
...
@@ -364,7 +364,7 @@ static double compute_frame_rms(AVFrame *frame, int channel)
}
}
}
}
rms_value
/=
frame
->
nb_samples
*
frame
->
channels
;
rms_value
/=
frame
->
nb_samples
*
av_frame_get_channels
(
frame
)
;
}
else
{
}
else
{
const
double
*
data_ptr
=
(
double
*
)
frame
->
extended_data
[
channel
];
const
double
*
data_ptr
=
(
double
*
)
frame
->
extended_data
[
channel
];
for
(
i
=
0
;
i
<
frame
->
nb_samples
;
i
++
)
{
for
(
i
=
0
;
i
<
frame
->
nb_samples
;
i
++
)
{
...
...
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