aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-08 19:32:59 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-08 19:42:49 +0200
commitae77266fce26eac4f5267d158c65bdebfb64f780 (patch)
treeb731b91cf7982db063f38b3da8489484aefa43a3 /doc
parent43c157f4a46cb76739f07782d23d1e4ff8da3253 (diff)
parent78071a1420b425dfb787ac739048f523007b8139 (diff)
downloadffmpeg-ae77266fce26eac4f5267d158c65bdebfb64f780.tar.gz
Merge commit '78071a1420b425dfb787ac739048f523007b8139'
* commit '78071a1420b425dfb787ac739048f523007b8139': pixfmt: add AV_ prefixes to PIX_FMT_* Conflicts: doc/APIchanges libavutil/pixfmt.h libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'doc')
-rw-r--r--doc/APIchanges8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges
index 06b5a8e9ea..56faf11842 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -97,6 +97,14 @@ API changes, most recent first:
2012-03-26 - a67d9cf - lavfi 2.66.100
Add avfilter_fill_frame_from_{audio_,}buffer_ref() functions.
+2012-10-xx - xxxxxxx - lavu 51.42.0 - pixfmt.h
+ Rename PixelFormat to AVPixelFormat and all PIX_FMT_* to AV_PIX_FMT_*.
+ To provide backwards compatibility, PixelFormat is now #defined as
+ AVPixelFormat.
+ Note that this can break user code that includes pixfmt.h and uses the
+ 'PixelFormat' identifier. Such code should either #undef PixelFormat
+ or stop using the PixelFormat name.
+
2012-10-05 - e7ba5b1 - lavr 1.0.0 - avresample.h
Data planes parameters to avresample_convert() and
avresample_read() are now uint8_t** instead of void**.