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
02d697aa
Commit
02d697aa
authored
Jan 28, 2003
by
Zdenek Kabelac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* headers valid for C++ compilers
Originally committed as revision 1521 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
a8721c09
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
avcodec.h
libavcodec/avcodec.h
+8
-0
avformat.h
libavformat/avformat.h
+8
-0
No files found.
libavcodec/avcodec.h
View file @
02d697aa
#ifndef AVCODEC_H
#define AVCODEC_H
#ifdef __cplusplus
extern
"C"
{
#endif
#include "common.h"
#define LIBAVCODEC_VERSION_INT 0x000406
...
...
@@ -1245,4 +1249,8 @@ void av_free_static(void);
void
*
__av_mallocz_static
(
void
**
location
,
unsigned
int
size
);
#define av_mallocz_static(p, s) __av_mallocz_static((void **)(p), s)
#ifdef __cplusplus
}
#endif
#endif
/* AVCODEC_H */
libavformat/avformat.h
View file @
02d697aa
#ifndef AVFORMAT_H
#define AVFORMAT_H
#ifdef __cplusplus
extern
"C"
{
#endif
#define LIBAVFORMAT_VERSION_INT 0x000406
#define LIBAVFORMAT_VERSION "0.4.6"
#define LIBAVFORMAT_BUILD 4603
...
...
@@ -403,4 +407,8 @@ int match_ext(const char *filename, const char *extensions);
#endif
/* HAVE_AV_CONFIG_H */
#ifdef __cplusplus
}
#endif
#endif
/* AVFORMAT_H */
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