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
08cb1950
Commit
08cb1950
authored
Mar 14, 2007
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kill 3 more av_mallocz_static()
Originally committed as revision 8397 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
9608652d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
+16
-0
utils.c
libavcodec/utils.c
+2
-0
crc.c
libavutil/crc.c
+7
-0
crc.h
libavutil/crc.h
+7
-0
No files found.
libavcodec/utils.c
View file @
08cb1950
...
...
@@ -1189,9 +1189,11 @@ unsigned avcodec_build( void )
}
static
void
init_crcs
(
void
){
#if LIBAVUTIL_VERSION_INT < (50<<16)
av_crc04C11DB7
=
av_mallocz_static
(
sizeof
(
AVCRC
)
*
257
);
av_crc8005
=
av_mallocz_static
(
sizeof
(
AVCRC
)
*
257
);
av_crc07
=
av_mallocz_static
(
sizeof
(
AVCRC
)
*
257
);
#endif
av_crc_init
(
av_crc04C11DB7
,
0
,
32
,
0x04c11db7
,
sizeof
(
AVCRC
)
*
257
);
av_crc_init
(
av_crc8005
,
0
,
16
,
0x8005
,
sizeof
(
AVCRC
)
*
257
);
av_crc_init
(
av_crc07
,
0
,
8
,
0x07
,
sizeof
(
AVCRC
)
*
257
);
...
...
libavutil/crc.c
View file @
08cb1950
...
...
@@ -21,10 +21,17 @@
#include "common.h"
#include "crc.h"
#if LIBAVUTIL_VERSION_INT < (50<<16)
AVCRC
*
av_crcEDB88320
;
AVCRC
*
av_crc04C11DB7
;
AVCRC
*
av_crc8005
;
AVCRC
*
av_crc07
;
#else
AVCRC
av_crcEDB88320
[
257
];
AVCRC
av_crc04C11DB7
[
257
];
AVCRC
av_crc8005
[
257
];
AVCRC
av_crc07
[
257
];
#endif
/**
* Inits a crc table.
...
...
libavutil/crc.h
View file @
08cb1950
...
...
@@ -23,10 +23,17 @@
typedef
uint32_t
AVCRC
;
#if LIBAVUTIL_VERSION_INT < (50<<16)
extern
AVCRC
*
av_crcEDB88320
;
extern
AVCRC
*
av_crc04C11DB7
;
extern
AVCRC
*
av_crc8005
;
extern
AVCRC
*
av_crc07
;
#else
extern
AVCRC
av_crcEDB88320
[];
extern
AVCRC
av_crc04C11DB7
[];
extern
AVCRC
av_crc8005
[];
extern
AVCRC
av_crc07
[];
#endif
int
av_crc_init
(
AVCRC
*
ctx
,
int
le
,
int
bits
,
uint32_t
poly
,
int
ctx_size
);
uint32_t
av_crc
(
const
AVCRC
*
ctx
,
uint32_t
start_crc
,
const
uint8_t
*
buffer
,
size_t
length
);
...
...
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