diff options
author | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2014-09-12 18:18:42 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-13 00:36:14 +0200 |
commit | d5e802609a0046441798cdbd137c96e4aa912390 (patch) | |
tree | 6a89dbcad5cccb0d15ff05d6e42be54942c5e6f2 /RELEASE_NOTES | |
parent | cdb3eee7c496f763d195de34be7f67783b98fb2c (diff) | |
download | ffmpeg-d5e802609a0046441798cdbd137c96e4aa912390.tar.gz |
doc: document the addition of the AVProbeData.mime_type field and it's implications
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'RELEASE_NOTES')
-rw-r--r-- | RELEASE_NOTES | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 113cc5e97d..14513a7948 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -54,6 +54,9 @@ │ ⚠ Behaviour changes │ └────────────────────────────┘ + • IMPORTANT: The new field mime_type was added to AVProbeData. + To avoid crashes, make sure to always initialize AVProbeData, e.g. use + 'AVProbeData pd = { 0 };' instead of 'AVProbeData pd;'. • dctdnoiz filter now uses a block size of 8x8 instead of 16x16 by default • -vismv option is deprecated in favor of the codecview filter • libmodplug is now detected through pkg-config |