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-04avcodec: Add av_cold attributes to init functions missing themDiego Biurrun
2013-05-03silly typo fixesDiego Biurrun
2013-02-07flac: don't check the number of channels before setting the channel layout.Tim Walker
This is unnecessary, as ff_flac_set_channel_layout can handle any number of channels. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-12-22flac: only set channel layout if not previously set or on channel count changeJustin Ruggles
Fixes Bug 402
2012-11-01flacdec: allow mid-stream channel layout changeJustin Ruggles
Although the libFLAC decoder cannot handle such a change, it is allowed by the spec and could potentially occur with live streams.
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-03-28Replace memset(0) by zero initializations.Diego Biurrun
Also remove one pointless zero initialization in rangecoder.c.
2012-02-21flac parser: set duration instead of frame_sizeJustin Ruggles
2011-11-02lavc: use designated initialisers for parsers.Anton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
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-12-30Use %td instead of %PRIdPTR. The argument has type ptrdiff_t.Justin Ruggles
Originally committed as revision 26166 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-30Use %"PRIdPTR" instead of %d to silence gcc warning about type mismatch.Justin Ruggles
Originally committed as revision 26164 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-30flac_parser: loop append buffer when the default size is not enough to getMichael Chinen
the desired number of frames. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 26163 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-12cosmetics: vertical alignment after last commitJustin Ruggles
Originally committed as revision 25934 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-12flac_parser: only buffer the estimated amount of input needed.Michael Chinen
Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25933 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-12Make FLAC parser return frames when it has the required amountMichael Chinen
(without buffering extra input). Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25932 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-12-07Add a FLAC parser.Michael Chinen
Seek test reference updated because FLAC seeking now works properly. Fixes roundup issue 1150. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25914 to svn://svn.ffmpeg.org/ffmpeg/trunk