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
694c2d1a
Commit
694c2d1a
authored
Jun 19, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sonicenc: dont put multiple assignments per line
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
6df61c3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
sonic.c
libavcodec/sonic.c
+10
-5
No files found.
libavcodec/sonic.c
View file @
694c2d1a
...
@@ -427,18 +427,21 @@ static void modified_levinson_durbin(int *window, int window_entries,
...
@@ -427,18 +427,21 @@ static void modified_levinson_durbin(int *window, int window_entries,
int
step
=
(
i
+
1
)
*
channels
,
k
,
j
;
int
step
=
(
i
+
1
)
*
channels
,
k
,
j
;
double
xx
=
0
.
0
,
xy
=
0
.
0
;
double
xx
=
0
.
0
,
xy
=
0
.
0
;
#if 1
#if 1
int
*
x_ptr
=
&
(
window
[
step
]),
*
state_ptr
=
&
(
state
[
0
]);
int
*
x_ptr
=
&
(
window
[
step
]);
int
*
state_ptr
=
&
(
state
[
0
]);
j
=
window_entries
-
step
;
j
=
window_entries
-
step
;
for
(;
j
>=
0
;
j
--
,
x_ptr
++
,
state_ptr
++
)
for
(;
j
>=
0
;
j
--
,
x_ptr
++
,
state_ptr
++
)
{
{
double
x_value
=
*
x_ptr
,
state_value
=
*
state_ptr
;
double
x_value
=
*
x_ptr
;
double
state_value
=
*
state_ptr
;
xx
+=
state_value
*
state_value
;
xx
+=
state_value
*
state_value
;
xy
+=
x_value
*
state_value
;
xy
+=
x_value
*
state_value
;
}
}
#else
#else
for
(
j
=
0
;
j
<=
(
window_entries
-
step
);
j
++
);
for
(
j
=
0
;
j
<=
(
window_entries
-
step
);
j
++
);
{
{
double
stepval
=
window
[
step
+
j
],
stateval
=
window
[
j
];
double
stepval
=
window
[
step
+
j
];
double
stateval
=
window
[
j
];
// xx += (double)window[j]*(double)window[j];
// xx += (double)window[j]*(double)window[j];
// xy += (double)window[step+j]*(double)window[j];
// xy += (double)window[step+j]*(double)window[j];
xx
+=
stateval
*
stateval
;
xx
+=
stateval
*
stateval
;
...
@@ -464,14 +467,16 @@ static void modified_levinson_durbin(int *window, int window_entries,
...
@@ -464,14 +467,16 @@ static void modified_levinson_durbin(int *window, int window_entries,
j
=
window_entries
-
step
;
j
=
window_entries
-
step
;
for
(;
j
>=
0
;
j
--
,
x_ptr
++
,
state_ptr
++
)
for
(;
j
>=
0
;
j
--
,
x_ptr
++
,
state_ptr
++
)
{
{
int
x_value
=
*
x_ptr
,
state_value
=
*
state_ptr
;
int
x_value
=
*
x_ptr
;
int
state_value
=
*
state_ptr
;
*
x_ptr
=
x_value
+
shift_down
(
k
*
state_value
,
LATTICE_SHIFT
);
*
x_ptr
=
x_value
+
shift_down
(
k
*
state_value
,
LATTICE_SHIFT
);
*
state_ptr
=
state_value
+
shift_down
(
k
*
x_value
,
LATTICE_SHIFT
);
*
state_ptr
=
state_value
+
shift_down
(
k
*
x_value
,
LATTICE_SHIFT
);
}
}
#else
#else
for
(
j
=
0
;
j
<=
(
window_entries
-
step
);
j
++
)
for
(
j
=
0
;
j
<=
(
window_entries
-
step
);
j
++
)
{
{
int
stepval
=
window
[
step
+
j
],
stateval
=
state
[
j
];
int
stepval
=
window
[
step
+
j
];
int
stateval
=
state
[
j
];
window
[
step
+
j
]
+=
shift_down
(
k
*
stateval
,
LATTICE_SHIFT
);
window
[
step
+
j
]
+=
shift_down
(
k
*
stateval
,
LATTICE_SHIFT
);
state
[
j
]
+=
shift_down
(
k
*
stepval
,
LATTICE_SHIFT
);
state
[
j
]
+=
shift_down
(
k
*
stepval
,
LATTICE_SHIFT
);
}
}
...
...
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