summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-11 11:49:08 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-11 11:49:08 +0000
commitc7c7feaa12c910516698d7d4a49060ac17a1845e (patch)
tree7a8e8d5a46280ff03c5eff24fd4fa90c2bc86aa8 /doc
parent84c038696097e5d4951ba3ad180e1100d66c0947 (diff)
Add APIchanges entry after avfilter_open() change in r24765.
Originally committed as revision 24766 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc')
-rw-r--r--doc/APIchanges7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges
index a58de69b42..6ec3dae809 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -13,6 +13,13 @@ libavutil: 2009-03-08
API changes, most recent first:
+2010-08-11 - r24765 - lavfi 1.33.0 - avfilter_open()
+ Change avfilter_open() signature:
+ AVFilterContext *avfilter_open(AVFilter *filter, const char *inst_name) ->
+ int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name);
+
+ This change breaks libavfilter API/ABI.
+
2010-08-11 - r24763 - lavfi 1.32.0 - AVFilterBufferRef
Add a type field to AVFilterBufferRef, and move video specific
properties to AVFilterBufferRefVideoProps.