summaryrefslogtreecommitdiff
path: root/libavcodec/options.c
Commit message (Collapse)AuthorAge
...
* libx264: add 'aq_strength' private option.Anton Khirnov2011-08-24
| | | | Deprecate corresponding global option.
* libx264: add 'aq_mode' private option.Anton Khirnov2011-08-24
| | | | Deprecate corresponding global option.
* libx264: add 'cqp' private option.Anton Khirnov2011-08-24
| | | | Deprecate corresponding global option.
* libx264: add 'crf' private option.Anton Khirnov2011-08-24
| | | | | | | Deprecate corresponding global option. Ideally all x264 private options should be generated automatically, but x264 doesn't provide the API for this yet.
* lavc: remove vbv_delay optionAnton Khirnov2011-08-24
| | | | It's broken and serves no purpose as it's a read-only field.
* lavc: add A|E|D flags to "ac" and "ar" optionsStefano Sabatini2011-08-21
| | | | | | | | Fix setting of the corresponding AVCodecContext fields via cmdutils.c:filter_codec_opts(). In particular, fix ffplay -ac and -ar options. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavc: add audio flag to the 'b' option, deprecate 'ab'.Anton Khirnov2011-08-16
| | | | | | Its only reason for its existence was ffmpeg's inability to properly assign AVOptions to streams. Now this is not a problem anymore, so 'ab' should go.
* lavc: Deprecate unused FF_ER_VERY_AGGRESSIVEDustin Brody2011-07-31
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* h263dec: Propagate AV_LOG_ERRORs from slice decoding through frame decoding ↵Dustin Brody2011-07-28
| | | | | | with sufficient error recognition Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* lavc: add support for codec-specific defaults.Anton Khirnov2011-07-10
|
* lavc: make avcodec_alloc_context3 officially public.Anton Khirnov2011-07-10
| | | | Deprecate avcodec_alloc_context/2.
* lavc: remove a half-working attempt at different defaults for audio/video ↵Anton Khirnov2011-07-10
| | | | | | codecs. It should be replaced with proper per-codec defaults.
* ac3dec: add a drc_scale private optionAnton Khirnov2011-07-10
| | | | | | Deprecate corresponding AVCodecContext option. This is the first test of decoder private options.
* lavc: add opt_find to AVCodecContext class.Anton Khirnov2011-06-17
| | | | | Fixes encoder private options, which are broken now in ffmpeg, because opt_default2() can't find them, thus making opt_default() to fail.
* Add request_sample_fmt field to AVCodecContext.Justin Ruggles2011-05-18
| | | | | This will allow audio decoders to support output of different sample formats as a runtime option.
* lavc: deprecate named constants for deprecated antialias_algo.Anton Khirnov2011-05-11
|
* AVOptions: make default_val a union, as proposed in AVOption2.Anton Khirnov2011-05-10
| | | | This breaks API and ABI.
* lavc: move some flac-specific options to its private context.Anton Khirnov2011-05-10
|
* lavc: remove FF_API_MB_Q cruftAnton Khirnov2011-04-26
|
* lavc: remove FF_API_RATE_EMU cruftAnton Khirnov2011-04-26
|
* lavc: remove FF_API_HURRY_UP cruftAnton Khirnov2011-04-26
|
* lavc: remove misc disabled cruft.Anton Khirnov2011-04-19
|
* lavc: remove the FF_API_INOFFICIAL cruft.Anton Khirnov2011-04-19
|
* lavc: remove the FF_API_USE_LPC cruft.Anton Khirnov2011-04-19
|
* lavc: add a FF_API_REQUEST_CHANNELS deprecation macroAnton Khirnov2011-04-07
| | | | And hide request_channels AVOption under it.
* lavc: deprecate AVCodecContext.antialias_algoAnton Khirnov2011-04-03
| | | | It's been unused since mp3float decoder was added.
* lavc: mark mb_qmin/mb_qmax for removal on next major bump.Anton Khirnov2011-04-03
| | | | They've been unused and deprecated for about five years.
* lavc: deprecate rate_emuAnton Khirnov2011-04-02
| | | | It's not used anywhere and apparrently hasn't been for a very long time.
* lavc: mark hurry_up for removal on next major bumpAnton Khirnov2011-04-02
| | | | | It has been deprecated for about five years, skip_idct/skip_frame should be used instead.
* Add audio_service_type field to AVCodecContext for encoding and reportingJustin Ruggles2011-03-25
| | | | of the service type in the audio bitstream.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* vbv_delay AVOption for ABI compatibilityMichael Niedermayer2011-02-16
| | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* Frame-based multithreading framework using pthreadsAlexander Strange2011-02-09
| | | | | | See doc/multithreading.txt for details on use in codecs. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* Update qmin/qmax values for libx264 presetsJason Garrett-Glaser2011-02-08
| | | | | Also allow qmin/qmax to go up to 69 (the current max value for libx264). This will have to increase when we add 9/10-bit support.
* Export dca profile information.Anssi Hannula2011-01-06
| | | | | | Patch by Anssi Hannula anssi d hannula a iki d fi Originally committed as revision 26250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini2010-11-12
| | | | | | SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add new -slices option and use it for libvpx and libx264.James Zern2010-10-22
| | | | | | Patch by James Zern, jzern google Originally committed as revision 25551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_INOFFICIAL define to disable the deprecated 'inofficial' flagAurelien Jacobs2010-09-30
| | | | Originally committed as revision 25277 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_API_USE_LPC define to disable the deprecated AVCodecContext.use_lpc fieldAurelien Jacobs2010-09-30
| | | | Originally committed as revision 25275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move allocation and init to defaults of the private codec contexts to ↵Michael Niedermayer2010-09-29
| | | | | | | | | avcodec_get_context_defaults3(). That way the user app can set codec specific parameters in the private context before opening it. Originally committed as revision 25257 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AVOptions from libavcodec to libavutilMichael Niedermayer2010-09-26
| | | | Originally committed as revision 25210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow the lowres option to affect audio codecs, tooMartin Storsjö2010-09-10
| | | | Originally committed as revision 25094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: add missing space to options.cJason Garrett-Glaser2010-08-04
| | | | Originally committed as revision 24688 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not map video quantizer scale (from 1-51 to 0-63) for libvpx anymore.James Zern2010-07-12
| | | | | | Patch by James Zern, jzern google Originally committed as revision 24223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.Justin Ruggles2010-07-11
| | | | | | | Add AVLPCType enum. Deprecate AVCodecContext.use_lpc. Originally committed as revision 24199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change qmax/qmin limits to 63 instead of 51.Jason Garrett-Glaser2010-07-10
| | | | | | VP8 supports quantizers up to 63. Originally committed as revision 24157 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change all occurences of "inofficial" to "unofficial" in code, commentsRodney Baker2010-07-03
| | | | | | | | and options. Keep old options until next major version bump. Patch by Rodney Baker, rodney d baker a iinet d net d au Originally committed as revision 24021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some fields were incorrectly reset (to NULL) when calling ↵Jean-Daniel Dupas2010-05-27
| | | | | | | | avcodec_copy_context(). Patch by Jean-Daniel Dupas, devlists shadowlab org Originally committed as revision 23344 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add log_level_offset to AVCodecContext.Stefano Sabatini2010-05-17
| | | | Originally committed as revision 23153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add intra refresh and crf-max support to the libavcodec libx264 wrapper.Jason Garrett-Glaser2010-05-06
| | | | | | Minor version bump. Originally committed as revision 23038 to svn://svn.ffmpeg.org/ffmpeg/trunk