diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-10-03 07:54:45 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-10-04 08:05:21 +0200 |
commit | cd15b7c03d8df29d4c69b0620cf27d4a8c9dfb65 (patch) | |
tree | e006be6e1ee440f067af8b1f8c0e943522310cae /libavutil/version.h | |
parent | c9df48909e03031aeb90facf9f307f3103691792 (diff) | |
download | ffmpeg-cd15b7c03d8df29d4c69b0620cf27d4a8c9dfb65.tar.gz |
samplefmt: make av_samples_alloc() initialize the data to silence.
Right now the buffer is zeroed, which does not represent silence for U8(P).
Diffstat (limited to 'libavutil/version.h')
-rw-r--r-- | libavutil/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/version.h b/libavutil/version.h index 6342baefb2..b77ab1a8fc 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -38,7 +38,7 @@ #define LIBAVUTIL_VERSION_MAJOR 51 #define LIBAVUTIL_VERSION_MINOR 41 -#define LIBAVUTIL_VERSION_MICRO 0 +#define LIBAVUTIL_VERSION_MICRO 1 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ LIBAVUTIL_VERSION_MINOR, \ |