Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lavc: make avpriv_flac_is_extradata_valid() private on the next bump | Anton Khirnov | 2014-11-06 | 1 | -1/+1 |
| | |||||
* | lavc: make avpriv_flac_parse_streaminfo() private on the next bump | Anton Khirnov | 2014-11-06 | 1 | -2/+2 |
| | |||||
* | flac: Remove unused headers | Tristan Matthews | 2014-09-26 | 1 | -2/+0 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | flac: make avpriv_flac_parse_block_header() inline | Anton Khirnov | 2014-05-28 | 1 | -2/+2 |
| | | | | | | This avoids all the ABI troubles associated with avpriv_. Since this function is very small and does not depend on any tables, making it inline should have no adverse effects. | ||||
* | cosmetics: Group .name and .long_name together in codec/format declarations | Diego Biurrun | 2013-10-03 | 1 | -1/+1 |
| | |||||
* | flac: use meaningful return values | Luca Barbato | 2013-07-28 | 1 | -32/+32 |
| | |||||
* | flacdec: drop unnecessary assert | Luca Barbato | 2013-05-16 | 1 | -5/+0 |
| | | | | The condition cannot happen anymore. | ||||
* | av_log_missing_feature() ---> avpriv_report_missing_feature() | Diego Biurrun | 2013-03-13 | 1 | -1/+1 |
| | |||||
* | lavc decoders: work with refcounted frames. | Anton Khirnov | 2013-03-08 | 1 | -1/+1 |
| | |||||
* | flac: decode directly to the user-provided AVFrame | Justin Ruggles | 2013-02-12 | 1 | -9/+5 |
| | |||||
* | flac: don't check the number of channels before setting the channel layout. | Tim Walker | 2013-02-06 | 1 | -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 change | Justin Ruggles | 2012-12-22 | 1 | -1/+2 |
| | | | | Fixes Bug 402 | ||||
* | lavc: add a wrapper for AVCodecContext.get_buffer(). | Anton Khirnov | 2012-12-04 | 1 | -1/+1 |
| | | | | It will be useful in the upcoming transition to refcounted AVFrames. | ||||
* | Include libavutil/channel_layout.h instead of libavutil/audioconvert.h | Justin Ruggles | 2012-11-11 | 1 | -1/+1 |
| | | | | Also reorder some other #include when applicable. | ||||
* | flacdec: do not warn on sample rate change | Justin Ruggles | 2012-11-01 | 1 | -5/+1 |
| | |||||
* | flacdec: allow mid-stream channel layout change | Justin Ruggles | 2012-11-01 | 1 | -18/+9 |
| | | | | | Although the libFLAC decoder cannot handle such a change, it is allowed by the spec and could potentially occur with live streams. | ||||
* | flacdec: use av_samples_* functions for sample buffer allocation | Justin Ruggles | 2012-11-01 | 1 | -14/+29 |
| | | | | Also, return an error on allocation failure. | ||||
* | Improve wording and spelling of av_log_missing_feature messages. | Diego Biurrun | 2012-10-23 | 1 | -1/+1 |
| | |||||
* | Use proper return values in case of missing features | Diego Biurrun | 2012-10-12 | 1 | -1/+1 |
| | |||||
* | flacdec: simplify sample buffer handling | Mans Rullgard | 2012-08-21 | 1 | -19/+18 |
| | | | | | | Pass pointer to sample buffer instead of channel number to various functions called from decode_subframe(). Also simplify a few expressions within this function. | ||||
* | flacdec: simplify loop in decode_residuals() | Mans Rullgard | 2012-08-21 | 1 | -2/+6 |
| | |||||
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 1 | -1/+1 |
| | |||||
* | flacdec: reverse lpc coeff order, simplify filter | Mans Rullgard | 2012-07-19 | 1 | -1/+1 |
| | | | | | | | Reversing the lpc coefficient order simplifies indexing in the filter. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | flac: Move flac functions shared between libraries to flac common code | Diego Biurrun | 2012-07-12 | 1 | -73/+0 |
| | | | | This fixes a number of flac-related build dependencies. | ||||
* | flacdec: add planar output support | Mans Rullgard | 2012-07-05 | 1 | -8/+26 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | flacdec: move lpc filter to flacdsp | Mans Rullgard | 2012-07-04 | 1 | -33/+2 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | flacdec: split off channel decorrelation as flacdsp | Mans Rullgard | 2012-07-04 | 1 | -42/+11 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | flacdec: factor out code setting avctx->sample_fmt | Mans Rullgard | 2012-07-04 | 1 | -13/+15 |
| | |||||
* | flacdec: allocate sample buffers with av_malloc | Mans Rullgard | 2012-07-04 | 1 | -2/+1 |
| | | | | | | | | | The buffers are only allocated once, although it can happen from any of a few different places, so there is no need to use realloc. Using av_malloc() ensures they are aligned suitably for SIMD optimisations. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | flacdec: remove curr_bps from FLACContext | Mans Rullgard | 2012-07-04 | 1 | -17/+18 |
| | | | | This value does not need to be persistent across calls. | ||||
* | flacdec: remove redundant setting of avctx->sample_fmt | Mans Rullgard | 2012-07-02 | 1 | -2/+0 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cosmetics: Align codec declarations | Martin Storsjö | 2012-04-06 | 1 | -1/+1 |
| | | | | | | | 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> | ||||
* | flacdec: set channel_layout based on channel count | Justin Ruggles | 2012-02-22 | 1 | -0/+13 |
| | | | | | | | Channel layouts are specified in the FLAC format description at http://flac.sourceforge.net/format.html fixes Bug 209 | ||||
* | flac: fix infinite loops on all-zero input or end-of-stream. | Ronald S. Bultje | 2012-02-16 | 1 | -0/+9 |
| | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org | ||||
* | Drop unnecessary av_uninit attributes from some variable declarations. | Diego Biurrun | 2012-02-13 | 1 | -1/+1 |
| | | | | Recent versions of gcc (4.4+) no longer give false positive warnings. | ||||
* | Add avcodec_decode_audio4(). | Justin Ruggles | 2011-12-02 | 1 | -16/+21 |
| | | | | | | Deprecate avcodec_decode_audio3(). Implement audio support in avcodec_default_get_buffer(). Implement the new audio decoder API in all audio decoders. | ||||
* | flacdec: use av_get_bytes_per_sample() to get sample size | Justin Ruggles | 2011-10-29 | 1 | -1/+2 |
| | |||||
* | lavc: use avpriv_ prefix for some flac symbols used in lavf. | Anton Khirnov | 2011-10-20 | 1 | -8/+8 |
| | | | | | Specifically, ff_flac_parse_streaminfo, ff_flac_is_extradata_valid and ff_flac_parse_block_header | ||||
* | flacdec: fix buffer size checking in get_metadata_size() | Justin Ruggles | 2011-09-26 | 1 | -1/+3 |
| | | | | | | Adds an additional check before reading the next block header and avoids a potential integer overflow when checking the metadata size against the remaining buffer size. | ||||
* | lavc: use designated initialisers for all codecs. | Anton Khirnov | 2011-07-29 | 1 | -8/+7 |
| | | | | It's more readable and less prone to breakage. | ||||
* | doxygen: use Doxygen markup for authors and web links where appropriate | Diego Biurrun | 2011-07-15 | 1 | -3/+1 |
| | |||||
* | Replace FFmpeg with Libav in licence headers | Mans Rullgard | 2011-03-19 | 1 | -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-26 | 1 | -1/+1 |
| | | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Define FLAC_MIN_FRAME_SIZE and use it in the FLAC decoder. | Michael Chinen | 2010-12-07 | 1 | -1/+1 |
| | | | | | | Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25916 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Simplify the FLAC decoder now that it no longer has to parse arbitrary raw FLAC | Michael Chinen | 2010-12-07 | 1 | -81/+9 |
| | | | | | | | data thanks to the recently added FLAC parser. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25915 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Add log_level_offset parameter to ff_flac_decode_frame_header(). It will be used | Michael Chinen | 2010-12-07 | 1 | -1/+1 |
| | | | | | | | to optionally silence the error messages. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25912 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Move decode_frame_header() from flacdec.c to flac.c/h to share with the | Michael Chinen | 2010-12-07 | 1 | -101/+1 |
| | | | | | | | forthcoming FLAC parser. Patch by Michael Chinen [mchinen at gmail] Originally committed as revision 25909 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enum | Stefano Sabatini | 2010-11-12 | 1 | -5/+5 |
| | | | | | | SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Support decoding of FLAC files without a STREAMINFO header. | Justin Ruggles | 2010-10-02 | 1 | -4/+28 |
| | | | | Originally committed as revision 25315 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Remove explicit filename from Doxygen @file commands. | Diego Biurrun | 2010-04-20 | 1 | -1/+1 |
| | | | | | | | | 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 |