diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-22 11:24:31 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-07-22 11:24:31 +0000 |
commit | 73642926b3ff3fcdd22540893c39b89efc2f2b4e (patch) | |
tree | 1e7f7ea06cdb59fc39a0cb5a8b42b3598ee6ccdc /doc/APIchanges | |
parent | bdab614be8df5681b7fbb89abfd08312f2686279 (diff) | |
download | ffmpeg-73642926b3ff3fcdd22540893c39b89efc2f2b4e.tar.gz |
Add APIchanges entry for the libavfilter media format generalization
change of r24424.
Originally committed as revision 24425 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'doc/APIchanges')
-rw-r--r-- | doc/APIchanges | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index 5660d01640..ddc183daf6 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -13,6 +13,26 @@ libavutil: 2009-03-08 API changes, most recent first: +2010-07-22 - r24424 - lavfi 1.26.0 - media format generalization + Add a type field to AVFilterLink. + + Change the field types: + enum PixelFormat format -> int format in AVFilterBuffer + enum PixelFormat *formats -> int *formats in AVFilterFormats + enum PixelFormat *format -> int format in AVFilterLink + + Change the function signatures: + AVFilterFormats *avfilter_make_format_list(const enum PixelFormat *pix_fmts); -> + AVFilterFormats *avfilter_make_format_list(const int *fmts); + + int avfilter_add_colorspace(AVFilterFormats **avff, enum PixelFormat pix_fmt); -> + int avfilter_add_format (AVFilterFormats **avff, int fmt); + + AVFilterFormats *avfilter_all_colorspaces(void); -> + AVFilterFormats *avfilter_all_formats (enum AVMediaType type); + + This change breaks libavfilter API/ABI. + 2010-07-21 - r24393 - lavcore 0.0.0 Add libavcore. |