summaryrefslogtreecommitdiffstats
path: root/libavcodec/flac_parser.c
Commit message (Collapse)AuthorAgeFilesLines
* avcodec: Add av_cold attributes to init functions missing themDiego Biurrun2013-05-041-1/+2
|
* silly typo fixesDiego Biurrun2013-05-031-1/+1
|
* flac: don't check the number of channels before setting the channel layout.Tim Walker2013-02-061-1/+1
| | | | | | This is unnecessary, as ff_flac_set_channel_layout can handle any number of channels. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* flac: only set channel layout if not previously set or on channel count changeJustin Ruggles2012-12-221-2/+5
| | | | Fixes Bug 402
* flacdec: allow mid-stream channel layout changeJustin Ruggles2012-11-011-0/+1
| | | | | Although the libFLAC decoder cannot handle such a change, it is allowed by the spec and could potentially occur with live streams.
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-071-1/+1
|
* Replace memset(0) by zero initializations.Diego Biurrun2012-03-281-2/+1
| | | | Also remove one pointless zero initialization in rangecoder.c.
* flac parser: set duration instead of frame_sizeJustin Ruggles2012-02-201-4/+6
|
* lavc: use designated initialisers for parsers.Anton Khirnov2011-11-021-5/+5
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-261-1/+1
| | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Use %td instead of %PRIdPTR. The argument has type ptrdiff_t.Justin Ruggles2010-12-301-1/+1
| | | | Originally committed as revision 26166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use %"PRIdPTR" instead of %d to silence gcc warning about type mismatch.Justin Ruggles2010-12-301-1/+1
| | | | Originally committed as revision 26164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flac_parser: loop append buffer when the default size is not enough to getMichael Chinen2010-12-301-14/+27
| | | | | | | the desired number of frames. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 26163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: vertical alignment after last commitJustin Ruggles2010-12-121-2/+2
| | | | Originally committed as revision 25934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flac_parser: only buffer the estimated amount of input needed.Michael Chinen2010-12-121-11/+18
| | | | | | Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make FLAC parser return frames when it has the required amountMichael Chinen2010-12-121-1/+15
| | | | | | | (without buffering extra input). Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25932 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a FLAC parser.Michael Chinen2010-12-071-0/+648
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
OpenPOWER on IntegriCloud