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
01880d28
Commit
01880d28
authored
Jul 09, 2012
by
Justin Ruggles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
alac: simplify 1st order prediction and reading of warm-up samples
parent
d0c0bf0d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
13 deletions
+5
-13
alac.c
libavcodec/alac.c
+5
-13
No files found.
libavcodec/alac.c
View file @
01880d28
...
...
@@ -186,25 +186,17 @@ static void predictor_decompress_fir_adapt(int32_t *error_buffer,
/* simple 1st-order prediction */
if
(
output_size
<=
1
)
return
;
for
(
i
=
0
;
i
<
output_size
-
1
;
i
++
)
{
int32_t
prev_value
;
int32_t
error_value
;
prev_value
=
buffer_out
[
i
];
error_value
=
error_buffer
[
i
+
1
];
buffer_out
[
i
+
1
]
=
sign_extend
((
prev_value
+
error_value
),
readsamplesize
);
for
(
i
=
1
;
i
<
output_size
;
i
++
)
{
buffer_out
[
i
]
=
sign_extend
(
buffer_out
[
i
-
1
]
+
error_buffer
[
i
],
readsamplesize
);
}
return
;
}
/* read warm-up samples */
for
(
i
=
0
;
i
<
predictor_coef_num
;
i
++
)
{
int32_t
val
;
val
=
buffer_out
[
i
]
+
error_buffer
[
i
+
1
];
val
=
sign_extend
(
val
,
readsamplesize
);
buffer_out
[
i
+
1
]
=
val
;
buffer_out
[
i
+
1
]
=
sign_extend
(
buffer_out
[
i
]
+
error_buffer
[
i
+
1
],
readsamplesize
);
}
/* NOTE: 4 and 8 are very common cases that could be optimized. */
...
...
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