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
2013-05-16Remove commented-out debug #define cruftDiego Biurrun
2013-05-16Remove commented-out #includesDiego Biurrun
2013-05-14mmf: Write metadata into an Optional Data chunkYoshihisa Uchida
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-05-09mmf: K&R formatting cosmeticsLuca Barbato
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-05-07oma: properly forward errors in oma_read_packetLuca Barbato
Prevent spurios EIO on EOF. CC:libav-stable@libav.org
2013-05-07oma: return meaningful errorsLuca Barbato
2013-05-07nut: use meaningful error valuesLuca Barbato
Fix the mispresented EINVAL for EOF on partial files, among the other.
2013-05-06wav: Always seek to an even offsetLuca Barbato
RIFF chunks are aligned to 16bit according to the specification. Bug-Id:500 CC:libav-stable@libav.org
2013-05-06nut: use a define for the nut versionLuca Barbato
Ease switching version in the future and make evident why that value.
2013-05-05avformat: Add av_cold attributes to init functions missing themDiego Biurrun
2013-05-05sctp: Add a note on why sctp_recvmsg and sctp_sendmsg have ff_-prefixesDiego Biurrun
2013-05-04avs: Increase magic value score above file extension scoreDiego Biurrun
This should fix misdetection of AVS files as AviSynth scripts when AviSynth support is enabled (Bugzilla #357).
2013-05-04avformat: Add AVPROBE_SCORE_EXTENSION define and use where appropriateDiego Biurrun
2013-05-04build: output-example: Add avutil to ELIBS in link commandDiego Biurrun
output-example links against swscale, which depends on avutil. In standard configurations, by pure good luck, the libs before swscale pull in all of swscale's dependencies and linking succeeds. However, in some configurations like --disable-asm this is not the case and linking fails. Hardcode the dependency to avoid a more general Makefile refactoring.
2013-05-04nut: K&R formatting cosmeticsLuca Barbato
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-05-03wav: return meaningful errorsLuca Barbato
2013-05-03silly typo fixesDiego Biurrun
2013-05-03id3v2: check for end of file while unescaping tagsLuca Barbato
Prevent a serious out of buffer bound write. Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC:libav-stable@libav.org
2013-05-03matroskaenc: add an option to put the index at the start of the fileAnton Khirnov
2013-05-03matroskaenc: cosmetics, reorder the #includesAnton Khirnov
2013-05-02wav: K&R formatting cosmeticsLuca Barbato
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-05-02id3v2: K&R formatting cosmeticsLuca Barbato
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-04-30avformat: Drop unnecessary ff_ name prefixes from static functionsDiego Biurrun
2013-04-27oma: K&R formatting cosmeticsLuca Barbato
2013-04-27hls, segment: fix splitting for audio-only streams.Anton Khirnov
CC:libav-stable@libav.org
2013-04-25lavf: introduce AVFMT_TS_NEGATIVELuca Barbato
Most formats do not support negative timestamps, shift them to avoid unexpected behaviour and a number of bad crashes. CC:libav-stable@libav.org Signed-off-by: Anton Khirnov <anton@khirnov.net> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-04-22mxfenc: Use correct printf format specifier for int64_tDiego Biurrun
libavformat/mxfenc.c:1861:9: warning: format '%lld' expects argument of type 'long long int', but argument 5 has type 'int64_t' [-Wformat]
2013-04-21riff: Factor out WAVEFORMATEX parsingLuca Barbato
Makes the code simpler to follow. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-04-21riff: Add ACTRAC3+ guidPeter Ross
Signed-off-by: Luca Barbato <lu_zero@gentoo.org> Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-04-21riff: Perform full lookup on WAVEFORMATEXTENSIBLE subformat guidPeter Ross
Signed-off-by: Luca Barbato <lu_zero@gentoo.org> Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-04-21riff: Move guid structs and helper functions into riffPeter Ross
Signed-off-by: Luca Barbato <lu_zero@gentoo.org> Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-04-21riff: check for eof if chunk size and code are 0Luca Barbato
Prevent an infinite loop. Inspired by a patch from Michael Niedermayer CC: libav-stable@libav.org Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-04-21riff: K&R formatting cosmeticsLuca Barbato
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-04-19mp3dec: fallback to generic seeking when a TOC is not presentMichael Niedermayer
Fixes seeking without a Xing/Info header. CC: libav-stable@libav.org Signed-off-by: Anton Khirnov <anton@khirnov.net>
2013-04-16flvenc: do not mux more than one stream per typeRafaël Carré
FLV does not support multiple audio or video streams. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-04-11img2enc: add an option for overwriting one file with subsequent imagesAnton Khirnov
Based on a patch by Michael Niedermayer <michaelni@gmx.at>.
2013-04-11Move misplaced file author information where it belongsDiego Biurrun
2013-04-09srtp: Include rtpdec.h for RTP_MAX_PACKET_LENGTHMartin Storsjö
This was missed from 350ad50b - this fixes building the fate-srtp test. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-04-09rtpdec: Increase max rtp packet size to 8192Andrew Van Til
This fixes connecting to "Ceton InfiniTV4 PCIe & USB". Signed-off-by: Martin Storsjö <martin@martin.st>
2013-04-09lavf: Use RTP_MAX_PACKET_LENGTH instead of 1500Andrew Van Til
Signed-off-by: Martin Storsjö <martin@martin.st>
2013-04-04img2: Add j2k file extension for JPEG 2000Nicolas Bertrand
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-04-04xmv: do not leak memory in the error paths in xmv_read_header()Anton Khirnov
CC: libav-stable@libav.org
2013-04-04xmv: check audio track parameters validity.Anton Khirnov
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-04-04id3v2: pad the APIC packets as required by lavc.Anton Khirnov
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-04-04lavf: make sure stream probe data gets freed.Anton Khirnov
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-04-03matroska: pass the lace size to the matroska_parse_rm_audioLuca Barbato
Each lace must be independent according to the specification. Fix heap-buffer-overflow in matroska_parse_block for corrupted real media in mkv files. Stricter check than fc43c19a567aa945398dccb491d972c11ec2a065 CC: libav-stable@libav.org
2013-04-03matroska: fix a corner case in ebml-lace parsingLuca Barbato
Make sure we notice when the lace_size[n] is a negative value. CC: libav-stable@libav.org
2013-04-03matroska: Update the available size after lace parsingDale Curtis
Fix heap-buffer-overflow in matroska_parse_block for corrupted real media in mkv files. CC: libav-stable@libav.org Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-03-31oma: Validate sample ratesLuca Barbato
The sample rate index is 3 bits even if currently index 5, 6 and 7 are not supported. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
2013-03-28flvdec: read audio sample size and channels metadataJustin Ruggles
This is needed in order for the FLV demuxer not to detect a codec change when using the "flv_metadata" option.