Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-04-15xwma: Fix wrong printf format expression.Diego Biurrun
Also add inttypes.h #include for PRId64 macros. This fixes the following warnings: libavformat/xwma.c:147: warning: too many arguments for format libavformat/xwma.c:151: warning: too many arguments for format
2011-04-15xwma demuxer: typosMax Horn
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-04-14handle malloc failures in ff_get_wav_headerMax Horn
ff_get_wav_header is reading data from a WAVE file and then uses it (without validation) to malloc a buffer. It then proceeded to read data into the buffer, without verifying that the allocation succeeded. To address this, change ff_get_wav_header to return an error if allocation failed, and adapted all calling code to handle that error. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2011-04-14add xWMA demuxerMax Horn
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>