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
2f9b652e
Commit
2f9b652e
authored
Jul 28, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavu: Drop deprecated context size variables
Deprecated in 10/2012.
parent
8f12ef98
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
0 additions
and
34 deletions
+0
-34
aes.c
libavutil/aes.c
+0
-4
aes.h
libavutil/aes.h
+0
-4
md5.c
libavutil/md5.c
+0
-4
md5.h
libavutil/md5.h
+0
-4
sha.c
libavutil/sha.c
+0
-4
sha.h
libavutil/sha.h
+0
-4
tree.c
libavutil/tree.c
+0
-4
tree.h
libavutil/tree.h
+0
-3
version.h
libavutil/version.h
+0
-3
No files found.
libavutil/aes.c
View file @
2f9b652e
...
...
@@ -40,10 +40,6 @@ typedef struct AVAES {
int
rounds
;
}
AVAES
;
#if FF_API_CONTEXT_SIZE
const
int
av_aes_size
=
sizeof
(
AVAES
);
#endif
struct
AVAES
*
av_aes_alloc
(
void
)
{
return
av_mallocz
(
sizeof
(
struct
AVAES
));
...
...
libavutil/aes.h
View file @
2f9b652e
...
...
@@ -32,10 +32,6 @@
* @{
*/
#if FF_API_CONTEXT_SIZE
extern
attribute_deprecated
const
int
av_aes_size
;
#endif
struct
AVAES
;
/**
...
...
libavutil/md5.c
View file @
2f9b652e
...
...
@@ -42,10 +42,6 @@ typedef struct AVMD5{
uint32_t
ABCD
[
4
];
}
AVMD5
;
#if FF_API_CONTEXT_SIZE
const
int
av_md5_size
=
sizeof
(
AVMD5
);
#endif
struct
AVMD5
*
av_md5_alloc
(
void
)
{
return
av_mallocz
(
sizeof
(
struct
AVMD5
));
...
...
libavutil/md5.h
View file @
2f9b652e
...
...
@@ -32,10 +32,6 @@
* @{
*/
#if FF_API_CONTEXT_SIZE
extern
attribute_deprecated
const
int
av_md5_size
;
#endif
struct
AVMD5
;
struct
AVMD5
*
av_md5_alloc
(
void
);
...
...
libavutil/sha.c
View file @
2f9b652e
...
...
@@ -40,10 +40,6 @@ typedef struct AVSHA {
void
(
*
transform
)(
uint32_t
*
state
,
const
uint8_t
buffer
[
64
]);
}
AVSHA
;
#if FF_API_CONTEXT_SIZE
const
int
av_sha_size
=
sizeof
(
AVSHA
);
#endif
struct
AVSHA
*
av_sha_alloc
(
void
)
{
return
av_mallocz
(
sizeof
(
struct
AVSHA
));
...
...
libavutil/sha.h
View file @
2f9b652e
...
...
@@ -32,10 +32,6 @@
* @{
*/
#if FF_API_CONTEXT_SIZE
extern
attribute_deprecated
const
int
av_sha_size
;
#endif
struct
AVSHA
;
/**
...
...
libavutil/tree.c
View file @
2f9b652e
...
...
@@ -29,10 +29,6 @@ typedef struct AVTreeNode {
int
state
;
}
AVTreeNode
;
#if FF_API_CONTEXT_SIZE
const
int
av_tree_node_size
=
sizeof
(
AVTreeNode
);
#endif
struct
AVTreeNode
*
av_tree_node_alloc
(
void
)
{
return
av_mallocz
(
sizeof
(
struct
AVTreeNode
));
...
...
libavutil/tree.h
View file @
2f9b652e
...
...
@@ -43,9 +43,6 @@
struct
AVTreeNode
;
#if FF_API_CONTEXT_SIZE
extern
attribute_deprecated
const
int
av_tree_node_size
;
#endif
/**
* Allocate an AVTreeNode.
...
...
libavutil/version.h
View file @
2f9b652e
...
...
@@ -78,9 +78,6 @@
* @{
*/
#ifndef FF_API_CONTEXT_SIZE
#define FF_API_CONTEXT_SIZE (LIBAVUTIL_VERSION_MAJOR < 55)
#endif
#ifndef FF_API_LLS_PRIVATE
#define FF_API_LLS_PRIVATE (LIBAVUTIL_VERSION_MAJOR < 55)
#endif
...
...
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