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-12-09avcodec: Use av_reallocp where suitableAlexandra Khirnova
Signed-off-by: Martin Storsjö <martin@martin.st>
2013-11-16flashsv: use the AVFrame API properly.Anton Khirnov
2013-11-02flashsv: K&R formatting cosmeticsLuca Barbato
Also improve some log message wording/spelling. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2013-11-01flashsv: Check diff_start diff_height valuesMichael Niedermayer
Fix out of array accesses. Found-by: ami_stuff Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-11-01flashsv: Refactor a littleLuca Barbato
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-03-14avcodec: av_log_missing_feature(1) ---> avpriv_request_sample()Diego Biurrun
2013-03-08lavc decoders: properly initialize AVFrame.Anton Khirnov
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2012-12-05lavc: fix decode_frame() third parameter semantics for video decodersAnton Khirnov
It's got_frame, not data size
2012-11-29flashsv: make sure data for zlib priming is availableJanne Grunau
Fixes a segfault in the fuzzed sample resolutionchange.flv_s314809. CC: libav-stable@libav.org
2012-11-26flashsv: check for keyframe before using differential codingJanne Grunau
Fixes a segfault in te fuzzed sample resolutionchange.flv_s211713. CC: libav-stable@libav.org
2012-11-21flashsv: Drop unused function and struct parametersDiego Biurrun
2012-10-23Improve wording and spelling of av_log_missing_feature messages.Diego Biurrun
2012-10-10flashsv: propagate inflateReset() errorsJanne Grunau
Fixes CID717493.
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-04-06cosmetics: Align codec declarationsMartin Storsjö
Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-10-11flashsv: return more meaningful error valueDiego Biurrun
2011-10-11flashsv: fix typo in av_log() messageDiego Biurrun
2011-07-22add Flash Screen Video 2 decoderKostya Shishkov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-07-16flashsv: split flashsv_decode_block() off from flashsv_decode_frame().Diego Biurrun
2011-07-08flashsv: inline copy_region() into flashsv_decode_frame()Diego Biurrun
2011-07-08flashsv: improve some variable namesDiego Biurrun
2011-07-06flashsv: improve some comments and fix some wrong onesDiego Biurrun
2011-07-06flashsv: Eliminate redundant variable indirection.Diego Biurrun
As a positive side-effect, this gets rid of the following warning: libavcodec/flashsv.c:190:38: warning: assignment discards ‘const’ qualifier from pointer target type
2011-07-06flashsv: set reference frame type to full frameDiego Biurrun
2011-07-06flashsv: replace bitstream description by a link to the specificationDiego Biurrun
An official specification now exists and it is both more detailed and easier to understand than the incomplete notes available here. Also remove ideas on how to implement an encoder; these notes are already present in the encoder.
2011-07-06flashsv: convert a debug av_log into av_dlogDiego Biurrun
2011-07-06flashsv: simplify conditionDiego Biurrun
2011-07-06flashsv: return more meaningful error valuesDiego Biurrun
2011-07-06flashsv: cosmetics: break some overly long linesDiego Biurrun
2011-07-06flashsv: cosmetics: drop some unnecessary parenthesesDiego Biurrun
2011-05-04flashsv: K&R cosmeticsDiego Biurrun
2011-04-25flashsv: Return more meaningful error values.Diego Biurrun
2011-04-25flashsv: Employ explicit AVCodec struct initializers.Diego Biurrun
2011-04-25cosmetics: K&R coding style and more whitespace for Flash Screen VideoDiego Biurrun
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-03Remove a few if (p) av_free(p) formsClément Bœsch
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-26Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04Fixed buffer overread in flashsv decoder.Laurent Aimar
Originally committed as revision 22210 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-13Do not release the AVFrame when using reget_buffer in flashsv.Benjamin Larsson
Originally committed as revision 19834 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-10Use reget_buffer instead of get_buffer. Fixes issue1367.Benjamin Larsson
Patch by jarkko.palviainen.sesca.com. Originally committed as revision 19814 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06Mark all pix_fmts and supported_framerates compound literals as const.Reimar Döffinger
Makes no difference for gcc but at least icc can put them in .rodata then. Originally committed as revision 19789 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-24flashsv: use skip_bits_long() where requiredMåns Rullgård
skip_bits(gb, n) with n > 17 doesn't work with all bitstream readers. Switch to skip_bits_long() instead. Originally committed as revision 15930 to svn://svn.ffmpeg.org/ffmpeg/trunk