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
5a5a27c5
Commit
5a5a27c5
authored
Apr 17, 2008
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Factorize decode_postfix() out.
Originally committed as revision 12873 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
c49c5e23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
32 deletions
+22
-32
alac.c
libavcodec/alac.c
+22
-32
No files found.
libavcodec/alac.c
View file @
5a5a27c5
...
@@ -145,6 +145,26 @@ static inline int count_leading_zeros(int32_t input)
...
@@ -145,6 +145,26 @@ static inline int count_leading_zeros(int32_t input)
return
31
-
av_log2
(
input
);
return
31
-
av_log2
(
input
);
}
}
static
inline
int
decode_postfix
(
GetBitContext
*
gb
,
int
x
,
int
k
,
int
limit
){
if
(
k
>=
limit
)
k
=
limit
;
if
(
k
!=
1
)
{
int
extrabits
=
show_bits
(
gb
,
k
);
/* multiply x by 2^k - 1, as part of their strange algorithm */
x
=
(
x
<<
k
)
-
x
;
if
(
extrabits
>
1
)
{
x
+=
extrabits
-
1
;
skip_bits
(
gb
,
k
);
}
else
skip_bits
(
gb
,
k
-
1
);
}
return
x
;
}
static
void
bastardized_rice_decompress
(
ALACContext
*
alac
,
static
void
bastardized_rice_decompress
(
ALACContext
*
alac
,
int32_t
*
output_buffer
,
int32_t
*
output_buffer
,
int
output_size
,
int
output_size
,
...
@@ -172,27 +192,11 @@ static void bastardized_rice_decompress(ALACContext *alac,
...
@@ -172,27 +192,11 @@ static void bastardized_rice_decompress(ALACContext *alac,
x
=
get_bits
(
&
alac
->
gb
,
readsamplesize
);
x
=
get_bits
(
&
alac
->
gb
,
readsamplesize
);
}
else
{
}
else
{
/* standard rice encoding */
/* standard rice encoding */
int
extrabits
;
int
k
;
/* size of extra bits */
int
k
;
/* size of extra bits */
/* read k, that is bits as is */
/* read k, that is bits as is */
k
=
31
-
count_leading_zeros
((
history
>>
9
)
+
3
);
k
=
31
-
count_leading_zeros
((
history
>>
9
)
+
3
);
x
=
decode_postfix
(
&
alac
->
gb
,
x
,
k
,
rice_kmodifier
);
if
(
k
>=
rice_kmodifier
)
k
=
rice_kmodifier
;
if
(
k
!=
1
)
{
extrabits
=
show_bits
(
&
alac
->
gb
,
k
);
/* multiply x by 2^k - 1, as part of their strange algorithm */
x
=
(
x
<<
k
)
-
x
;
if
(
extrabits
>
1
)
{
x
+=
extrabits
-
1
;
skip_bits
(
&
alac
->
gb
,
k
);
}
else
skip_bits
(
&
alac
->
gb
,
k
-
1
);
}
}
}
x_modified
=
sign_modifier
+
x
;
x_modified
=
sign_modifier
+
x
;
...
@@ -222,24 +226,10 @@ static void bastardized_rice_decompress(ALACContext *alac,
...
@@ -222,24 +226,10 @@ static void bastardized_rice_decompress(ALACContext *alac,
block_size
=
get_bits
(
&
alac
->
gb
,
16
);
block_size
=
get_bits
(
&
alac
->
gb
,
16
);
}
else
{
}
else
{
int
k
;
int
k
;
int
extrabits
;
k
=
count_leading_zeros
(
history
)
+
((
history
+
16
)
>>
6
/* / 64 */
)
-
24
;
k
=
count_leading_zeros
(
history
)
+
((
history
+
16
)
>>
6
/* / 64 */
)
-
24
;
if
(
k
>=
rice_kmodifier
)
block_size
=
decode_postfix
(
&
alac
->
gb
,
x
,
k
,
rice_kmodifier
);
k
=
rice_kmodifier
;
x
=
(
x
<<
k
)
-
x
;
extrabits
=
show_bits
(
&
alac
->
gb
,
k
);
if
(
extrabits
<
2
)
{
skip_bits
(
&
alac
->
gb
,
k
-
1
);
}
else
{
x
+=
extrabits
-
1
;
skip_bits
(
&
alac
->
gb
,
k
);
}
block_size
=
x
;
}
}
if
(
block_size
>
0
)
{
if
(
block_size
>
0
)
{
...
...
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