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
1a751455
Commit
1a751455
authored
Jun 29, 2016
by
Timo Rothenpieler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: Move new field to the end of AVFilterContext
This fixes an accidental ABI break introduced at
8688d3af
.
parent
4890b085
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
9 deletions
+17
-9
APIchanges
doc/APIchanges
+8
-0
avfilter.h
libavfilter/avfilter.h
+7
-7
version.h
libavfilter/version.h
+2
-2
No files found.
doc/APIchanges
View file @
1a751455
...
...
@@ -15,6 +15,14 @@ libavutil: 2015-08-28
API changes, most recent first:
2016-06-29 - xxxxxxx - lavfi 6.47.100 - avfilter.h
Fix accidental ABI breakage in AVFilterContext.
ABI was broken in 8688d3a, lavfi 6.42.100 and released as ffmpeg 3.1.
Because of this, ffmpeg and ffplay built against lavfi>=6.42.100 will not be
compatible with lavfi>=6.47.100. Potentially also affects other users of
libavfilter if they are using one of the affected fields.
-------- 8< --------- FFmpeg 3.1 was cut here -------- 8< ---------
2016-06-26 - 481f320 / 1c9e861 - lavu 55.27.100 / 55.13.0 - hwcontext.h
...
...
libavfilter/avfilter.h
View file @
1a751455
...
...
@@ -344,6 +344,13 @@ struct AVFilterContext {
*/
AVFilterInternal
*
internal
;
struct
AVFilterCommand
*
command_queue
;
char
*
enable_str
;
///< enable expression string
void
*
enable
;
///< parsed expression (AVExpr*)
double
*
var_values
;
///< variable values for the enable expression
int
is_disabled
;
///< the enabled state from the last expression evaluation
/**
* For filters which will create hardware frames, sets the device the
* filter should create them in. All other filters will ignore this field:
...
...
@@ -352,13 +359,6 @@ struct AVFilterContext {
* hardware context information.
*/
AVBufferRef
*
hw_device_ctx
;
struct
AVFilterCommand
*
command_queue
;
char
*
enable_str
;
///< enable expression string
void
*
enable
;
///< parsed expression (AVExpr*)
double
*
var_values
;
///< variable values for the enable expression
int
is_disabled
;
///< the enabled state from the last expression evaluation
};
/**
...
...
libavfilter/version.h
View file @
1a751455
...
...
@@ -30,8 +30,8 @@
#include "libavutil/version.h"
#define LIBAVFILTER_VERSION_MAJOR 6
#define LIBAVFILTER_VERSION_MINOR 4
6
#define LIBAVFILTER_VERSION_MICRO 10
2
#define LIBAVFILTER_VERSION_MINOR 4
7
#define LIBAVFILTER_VERSION_MICRO 10
0
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
LIBAVFILTER_VERSION_MINOR, \
...
...
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