Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cosmetics: Group .name and .long_name together in codec/format declarations | Diego Biurrun | 2013-10-03 | 1 | -1/+1 |
| | |||||
* | avcodec: av_log_missing_feature(1) ---> avpriv_request_sample() | Diego Biurrun | 2013-03-13 | 1 | -1/+1 |
| | |||||
* | 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 |
| | |||||
* | amrwb: decode directly to the user-provided AVFrame | Justin Ruggles | 2013-02-12 | 1 | -9/+5 |
| | |||||
* | floatdsp: move scalarproduct_float from dsputil to avfloatdsp. | Ronald S. Bultje | 2013-01-22 | 1 | -16/+17 |
| | | | | This makes the aac decoder and all voice codecs independent of dsputil. | ||||
* | lavc: add a wrapper for AVCodecContext.get_buffer(). | Anton Khirnov | 2012-12-04 | 1 | -1/+2 |
| | | | | 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. | ||||
* | amrwbdec: set channels, channel_layout, and sample_rate | Justin Ruggles | 2012-11-01 | 1 | -1/+10 |
| | | | | Only mono 16kHz is supported. | ||||
* | amrwbdec: fix invalid pointer arithmetic | Mans Rullgard | 2012-10-27 | 1 | -11/+10 |
| | | | | | | | | | | | | Subtracting a (positive) value from the address of an array violates C99 section 6.5.6: If both the pointer operand and the result point to elements of the same array object, or one past the last element of the array object, the evaluation shall not produce an overflow; otherwise, the behavior is undefined. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Use proper return values in case of missing features | Diego Biurrun | 2012-10-12 | 1 | -1/+1 |
| | |||||
* | celp_math: Replace duplicate ff_dot_productf() by ff_scalarproduct_c() | Diego Biurrun | 2012-08-27 | 1 | -14/+19 |
| | |||||
* | amrwbdec: Decode the fr_quality bit properly | Martin Storsjö | 2012-08-17 | 1 | -1/+1 |
| | | | | | | | | The way this bit is decoded was accidentally flipped in b70feb405, leading to warnings "Encountered a bad or corrupted frame" for each decoded frame. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Don't include common.h from avutil.h | Martin Storsjö | 2012-08-15 | 1 | -0/+1 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 1 | -1/+1 |
| | |||||
* | Improve descriptiveness of a number of codec and container long names | Diego Biurrun | 2012-07-30 | 1 | -1/+1 |
| | |||||
* | cosmetics: Align codec declarations | Martin Storsjö | 2012-04-06 | 1 | -1/+2 |
| | | | | | | | 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> | ||||
* | amrnb/amrwb: Remove get_bits usage. | Alex Converse | 2012-03-05 | 1 | -8/+2 |
| | | | | | It is used to parse fixed sized fields out of a single octet. The code is simpler without it. | ||||
* | amrwb: remove duplicate arguments from extrapolate_isf(). | Ronald S. Bultje | 2012-03-02 | 1 | -13/+12 |
| | | | | | | | | Prevents warnings because the dst and src overlap (are the same) in the memcpy() inside the function. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org | ||||
* | amrwb: error out early if mode is invalid. | Ronald S. Bultje | 2012-03-02 | 1 | -4/+8 |
| | | | | | | | | Prevents using the invalid mode as an index in a static array, which would generate invalid reads. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org | ||||
* | doxygen: misc consistency, spelling and wording fixes | Diego Biurrun | 2011-12-12 | 1 | -34/+34 |
| | |||||
* | Add avcodec_decode_audio4(). | Justin Ruggles | 2011-12-02 | 1 | -7/+20 |
| | | | | | | Deprecate avcodec_decode_audio3(). Implement audio support in avcodec_default_get_buffer(). Implement the new audio decoder API in all audio decoders. | ||||
* | libavcodec: Use "const enum AVSampleFormat[]" in AVCodec initialization | Martin Storsjö | 2011-04-12 | 1 | -1/+1 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Replace FFmpeg with Libav in licence headers | Mans Rullgard | 2011-03-19 | 1 | -4/+4 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Rename remaining occurrences of SAMPLE_FMT_* to AV_SAMPLE_FMT_* | Anton Khirnov | 2011-02-03 | 1 | -2/+2 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Replace remaining occurrences of CODEC_TYPE_* with AVMEDIA_TYPE* | Anton Khirnov | 2011-02-03 | 1 | -1/+1 |
| | | | | | | Tested to compile with lavc major bump. 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> | ||||
* | Use AVSampleFormat instead of the deprecated SampleFormat. | Reimar Döffinger | 2011-01-01 | 1 | -1/+1 |
| | | | | Originally committed as revision 26185 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | AMR-WB decoder, written as part of Google Summer of Code 2010 by Marcelo | Ronald S. Bultje | 2010-12-18 | 1 | -0/+1237 |
Galvão Póvoa <marspeoplester gmail com>, mentored by Robert Swain <robert dot swain gmail com>. Originally committed as revision 26051 to svn://svn.ffmpeg.org/ffmpeg/trunk |