Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 1 | -1/+1 |
| | |||||
* | flac: make FLAC_CHMODE_* constants consecutive | Mans Rullgard | 2012-07-04 | 1 | -10/+3 |
| | |||||
* | flacenc: add option for forcing stereo decorrelation mode | Mans Rullgard | 2012-07-04 | 1 | -1/+11 |
| | | | | | | This is mainly useful for testing. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cosmetics: Align codec declarations | Martin Storsjö | 2012-04-06 | 1 | -4/+5 |
| | | | | | | | 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> | ||||
* | flacenc: use AVCodec.encode2() | Justin Ruggles | 2012-03-20 | 1 | -21/+31 |
| | |||||
* | doxygen: Do not include license boilerplates in Doxygen comment blocks. | Diego Biurrun | 2012-02-06 | 1 | -1/+1 |
| | |||||
* | lavc: remove disabled FF_API_FLAC_GLOBAL_OPTS cruft. | Anton Khirnov | 2012-01-27 | 1 | -68/+0 |
| | |||||
* | AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_* | Anton Khirnov | 2011-10-12 | 1 | -16/+16 |
| | |||||
* | lavc: use designated initialisers for all codecs. | Anton Khirnov | 2011-07-29 | 1 | -8/+7 |
| | | | | It's more readable and less prone to breakage. | ||||
* | Mark some variables with av_unused | Mans Rullgard | 2011-06-03 | 1 | -1/+1 |
| | | | | | | | Most of these variables are only used in av_dlog statements, some are required but not used by other macros. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | flacenc: use proper initializers for AVOption default values. | Anton Khirnov | 2011-05-11 | 1 | -16/+16 |
| | | | | | default_val was recently changes from double to a union, current code wasn't updated for that. | ||||
* | lavc: move some flac-specific options to its private context. | Anton Khirnov | 2011-05-10 | 1 | -30/+72 |
| | |||||
* | lavc: remove the FF_API_USE_LPC cruft. | Anton Khirnov | 2011-04-19 | 1 | -11/+0 |
| | |||||
* | 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> | ||||
* | Separate window function from autocorrelation. | Justin Ruggles | 2011-01-21 | 1 | -4/+6 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Move lpc_compute_autocorr() from DSPContext to a new struct LPCContext. | Justin Ruggles | 2011-01-21 | 1 | -4/+3 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enum | Stefano Sabatini | 2010-11-12 | 1 | -2/+2 |
| | | | | | | SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | add FF_API_USE_LPC define to disable the deprecated AVCodecContext.use_lpc field | Aurelien Jacobs | 2010-09-30 | 1 | -1/+1 |
| | | | | Originally committed as revision 25275 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | cosmetics: rename output_* to write_* | Justin Ruggles | 2010-07-31 | 1 | -6/+6 |
| | | | | Originally committed as revision 24634 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Simplify verbatim mode fallback by checking the frame size before writing. | Justin Ruggles | 2010-07-31 | 1 | -11/+7 |
| | | | | Originally committed as revision 24632 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Change max_framesize for small final frame. | Justin Ruggles | 2010-07-31 | 1 | -0/+6 |
| | | | | Originally committed as revision 24631 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Calculate an exact frame size before writing. Now the buffer size requirements | Justin Ruggles | 2010-07-31 | 1 | -14/+79 |
| | | | | | | | can be known exactly, so larger frame sizes can be safely encoded without buffer overwrite. Originally committed as revision 24630 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | cosmetics: rename find_subblock_rice_params() to find_subframe_rice_params() | Justin Ruggles | 2010-07-31 | 1 | -7/+7 |
| | | | | Originally committed as revision 24629 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Reduce number of input parameters to find_subblock_rice_params(). | Justin Ruggles | 2010-07-31 | 1 | -34/+22 |
| | | | | Originally committed as revision 24628 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | 10l: fix bit count for frame header | Justin Ruggles | 2010-07-31 | 1 | -1/+4 |
| | | | | Originally committed as revision 24627 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Simplify fallback to verbatim mode encoding. | Justin Ruggles | 2010-07-31 | 1 | -16/+14 |
| | | | | Originally committed as revision 24626 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | cosmetics: line wrap and vertical alignment | Justin Ruggles | 2010-07-31 | 1 | -8/+10 |
| | | | | Originally committed as revision 24625 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Combine calc_rice_params_fixed() and calc_rice_params_lpc() into a single | Justin Ruggles | 2010-07-31 | 1 | -24/+14 |
| | | | | | | function. Originally committed as revision 24624 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Remove unneeded wrapper function. | Justin Ruggles | 2010-07-31 | 1 | -8/+1 |
| | | | | Originally committed as revision 24622 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Remove duplicate code by adding a flag for encoding in verbatim mode. | Justin Ruggles | 2010-07-31 | 1 | -34/+6 |
| | | | | Originally committed as revision 24621 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Estimate frame size during encoding. | Justin Ruggles | 2010-07-31 | 1 | -3/+51 |
| | | | | Originally committed as revision 24619 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | cosmetics: indentation | Justin Ruggles | 2010-07-30 | 1 | -38/+38 |
| | | | | Originally committed as revision 24612 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Combine output_subframe() and output_subframes(). | Justin Ruggles | 2010-07-30 | 1 | -19/+11 |
| | | | | Originally committed as revision 24611 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Remove unneeded variable. | Justin Ruggles | 2010-07-30 | 1 | -4/+1 |
| | | | | Originally committed as revision 24610 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | cosmetics: indentation | Justin Ruggles | 2010-07-30 | 1 | -28/+28 |
| | | | | Originally committed as revision 24609 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Combine output_subframe_verbatim() and output_subframe_lpc(). | Justin Ruggles | 2010-07-30 | 1 | -23/+13 |
| | | | | Originally committed as revision 24608 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Combine and simplify output_residual() and output_subframe_lpc(). | Justin Ruggles | 2010-07-30 | 1 | -37/+21 |
| | | | | Originally committed as revision 24607 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | cosmetics: reindent | Justin Ruggles | 2010-07-30 | 1 | -5/+5 |
| | | | | Originally committed as revision 24606 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Combine and simplify output_subframe_fixed() and output_subframe_lpc(). | Justin Ruggles | 2010-07-30 | 1 | -19/+5 |
| | | | | Originally committed as revision 24605 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Combine and simplify output_subframe_constant() and output_subframe_verbatim(). | Justin Ruggles | 2010-07-30 | 1 | -25/+11 |
| | | | | Originally committed as revision 24604 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Pass FlacSubframe to output_subframe_* instead of channel number. | Justin Ruggles | 2010-07-30 | 1 | -24/+11 |
| | | | | Originally committed as revision 24603 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | cosmetics: change FlacEncodeContext variable name from ctx to s in several | Justin Ruggles | 2010-07-30 | 1 | -36/+36 |
| | | | | | | places for consistency. Originally committed as revision 24602 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Set coded_frame->pts in the FLAC encoder | Justin Ruggles | 2010-07-30 | 1 | -0/+1 |
| | | | | Originally committed as revision 24601 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Do not need to set coded_frame->key_frame = 1 because it is already set in | Justin Ruggles | 2010-07-30 | 1 | -1/+0 |
| | | | | | | avcodec_alloc_frame(). Originally committed as revision 24600 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Move debug logging of compression options to a single function. | Justin Ruggles | 2010-07-30 | 1 | -37/+60 |
| | | | | Originally committed as revision 24599 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Add 2 failed memory allocation checks | Justin Ruggles | 2010-07-30 | 1 | -0/+4 |
| | | | | Originally committed as revision 24598 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | cosmetics: pretty-print flacenc.c | Justin Ruggles | 2010-07-30 | 1 | -325/+344 |
| | | | | Originally committed as revision 24597 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Use "const" qualifier for pointers that point to input data of | Reimar Döffinger | 2010-07-24 | 1 | -4/+4 |
| | | | | | | | audio encoders. This is purely for clarity/documentation purposes. Originally committed as revision 24481 to svn://svn.ffmpeg.org/ffmpeg/trunk | ||||
* | Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields. | Justin Ruggles | 2010-07-11 | 1 | -29/+74 |
| | | | | | | | Add AVLPCType enum. Deprecate AVCodecContext.use_lpc. Originally committed as revision 24199 to svn://svn.ffmpeg.org/ffmpeg/trunk |