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
1d94a662
Commit
1d94a662
authored
Jul 19, 2006
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify
Originally committed as revision 5786 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
cfc4bd46
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
9 deletions
+4
-9
crc.c
libavformat/crc.c
+1
-1
adler32.c
libavutil/adler32.c
+3
-8
No files found.
libavformat/crc.c
View file @
1d94a662
...
...
@@ -29,7 +29,7 @@ static int crc_write_header(struct AVFormatContext *s)
CRCState
*
crc
=
s
->
priv_data
;
/* init CRC */
crc
->
crcval
=
av_adler32_update
(
0
,
NULL
,
0
)
;
crc
->
crcval
=
1
;
return
0
;
}
...
...
libavutil/adler32.c
View file @
1d94a662
...
...
@@ -11,21 +11,16 @@
/* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
#define DO1(buf) {s1 += *buf++; s2 += s1;}
#define DO2(buf) DO1(buf); DO1(buf);
#define DO4(buf) DO2(buf); DO2(buf);
#define DO8(buf) DO4(buf); DO4(buf);
#define DO16(buf) DO8(buf); DO8(buf);
#define DO4(buf) DO1(buf); DO1(buf); DO1(buf); DO1(buf);
#define DO16(buf) DO4(buf); DO4(buf); DO4(buf); DO4(buf);
unsigned
long
av_adler32_update
(
unsigned
long
adler
,
const
uint8_t
*
buf
,
unsigned
int
len
)
{
unsigned
long
s1
=
adler
&
0xffff
;
unsigned
long
s2
=
(
adler
>>
16
)
&
0xffff
;
int
k
;
if
(
buf
==
NULL
)
return
1L
;
while
(
len
>
0
)
{
k
=
FFMIN
(
len
,
NMAX
);
int
k
=
FFMIN
(
len
,
NMAX
);
len
-=
k
;
#ifndef CONFIG_SMALL
while
(
k
>=
16
)
{
...
...
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