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
2014-11-02avformat/wavenc: Use localtime_r() for thread safteyMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-07-11avformat/wavenc: use av_mallocz_array()Paul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2014-06-24avformat/wavenc: simplify malloc failure checkingMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-06-24avformat/wavenc: more specific error return for "Writing 16 bit peak for 8 ↵Michael Niedermayer
bit audio" Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-06-24avformat/wavenc: do not hardcode array size in memset and other functionsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-06-24avformat/wavenc: use the bitexact flag from avformat instead of the one from ↵Michael Niedermayer
avcodec Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-06-24Peak Envelope Chunk encoder: IndentGeorg Lippitsch
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-06-24EBU Tech 3285 - Supplement 3 - Peak Envelope Chunk encoderGeorg Lippitsch
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-18Merge commit 'd246231e4714119faac6c7acd881d3b687bb8b11'Michael Niedermayer
* commit 'd246231e4714119faac6c7acd881d3b687bb8b11': wavenc: use codec descriptors to get the codec name Conflicts: libavformat/wavenc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-18wavenc: use codec descriptors to get the codec nameAnton Khirnov
Also, return a proper error code.
2014-05-04Initialize riff and wav size fields to -1 instead of 0.Carl Eugen Hoyos
WMP doess not play the output files if the fields are set to 0 and not overwritten (using pipe output). Fixes ticket #3346.
2014-04-30ff_put_wav_header: add flag to force WAVEFORMATEXDaniel Verkamp
Partially undoes commit 2c4e08d89327595f7f4be57dda4b3775e1198d5e: riff: always generate a proper WAVEFORMATEX structure in ff_put_wav_header A new flag, FF_PUT_WAV_HEADER_FORCE_WAVEFORMATEX, is added to force the use of WAVEFORMATEX rather than PCMWAVEFORMAT even for PCM codecs. This flag is used in the Matroska muxer (the cause of the original change) and in the ASF muxer, because the specifications for these formats indicate explicitly that WAVEFORMATEX should be used. Muxers for other formats will return to the original behavior of writing PCMWAVEFORMAT when writing a header for raw PCM. In particular, this causes raw PCM in WAV to generate the canonical 44-byte header expected by some tools. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-11-03lavf/wavenc: check for a single stream.Nicolas George
Fix trac ticket #3110.
2013-02-13WAV muxer: reindentDaniel Verkamp
2013-02-12WAV muxer: add RF64 supportDaniel Verkamp
2013-01-07w64: fact guid supportPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-12-31Sony Wave64 muxerPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-11-27wavenc: write fact chunk sample count at the correct file positionMichael Niedermayer
Fixes curruption of metadata in the INFO chunk. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-10-31wavenc: fix curruption of metadataMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-17Merge commit '31c54711cc3f1484af101d629bbb805820d37ad1'Michael Niedermayer
* commit '31c54711cc3f1484af101d629bbb805820d37ad1': lavf: split wav muxer and demuxer into separate files. Conflicts: libavformat/wavdec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-10-16lavf: split wav muxer and demuxer into separate files.Anton Khirnov