Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
540f1c7b
Commit
540f1c7b
authored
Aug 08, 2008
by
Stefano Sabatini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement avfilter_version().
Originally committed as revision 14669 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
b3b990b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
avfilter.c
libavfilter/avfilter.c
+4
-0
avfilter.h
libavfilter/avfilter.h
+6
-1
No files found.
libavfilter/avfilter.c
View file @
540f1c7b
...
@@ -22,6 +22,10 @@
...
@@ -22,6 +22,10 @@
#include "libavcodec/imgconvert.h"
#include "libavcodec/imgconvert.h"
#include "avfilter.h"
#include "avfilter.h"
unsigned
avfilter_version
(
void
)
{
return
LIBAVFILTER_VERSION_INT
;
}
/** list of registered filters */
/** list of registered filters */
struct
FilterList
struct
FilterList
{
{
...
...
libavfilter/avfilter.h
View file @
540f1c7b
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
#define FFMPEG_AVFILTER_H
#define FFMPEG_AVFILTER_H
#define LIBAVFILTER_VERSION_MAJOR 0
#define LIBAVFILTER_VERSION_MAJOR 0
#define LIBAVFILTER_VERSION_MINOR
0
#define LIBAVFILTER_VERSION_MINOR
1
#define LIBAVFILTER_VERSION_MICRO 0
#define LIBAVFILTER_VERSION_MICRO 0
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
...
@@ -37,6 +37,11 @@
...
@@ -37,6 +37,11 @@
#include <stddef.h>
#include <stddef.h>
#include "libavcodec/avcodec.h"
#include "libavcodec/avcodec.h"
/**
* Returns the LIBAVFILTER_VERSION_INT constant.
*/
unsigned
avfilter_version
(
void
);
typedef
struct
AVFilterContext
AVFilterContext
;
typedef
struct
AVFilterContext
AVFilterContext
;
typedef
struct
AVFilterLink
AVFilterLink
;
typedef
struct
AVFilterLink
AVFilterLink
;
typedef
struct
AVFilterPad
AVFilterPad
;
typedef
struct
AVFilterPad
AVFilterPad
;
...
...
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