summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-10-06 11:18:06 +0200
committerAnton Khirnov <anton@khirnov.net>2012-10-08 07:12:16 +0200
commit78071a1420b425dfb787ac739048f523007b8139 (patch)
tree66733d0633637ce8b6781956c50282e319c65a4f /doc
parent7b556be6735371d1040c7076547b8198d9fadd34 (diff)
pixfmt: add AV_ prefixes to PIX_FMT_*
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 75c3c5268c..76475dacaf 100644
--- a/doc/APIchanges
+++ b/doc/APIchanges
@@ -13,6 +13,14 @@ libavutil: 2011-04-18
API changes, most recent first:
+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**.