summaryrefslogtreecommitdiff
path: root/libavcodec/options.c
Commit message (Collapse)AuthorAge
...
* avcodec: use av_opt_set() instead of deprecated av_set_string3()Justin Ruggles2011-11-19
|
* avcodec: fix some const warningsJustin Ruggles2011-11-19
| | | | | | | libavcodec/options.c:583: warning: assignment discards qualifiers from pointer target type libavcodec/options.c:589: warning: initialization discards qualifiers from pointer target type
* avcodec: remove pointless AVOption, internal_buffer_countJustin Ruggles2011-11-19
|
* libx264: Set the default of the rc_lookahead option to -1Martin Storsjö2011-11-04
| | | | | | | | This allows it to use the defaults specified by preset/tune, without overwriting it with the default value from the AVCodecContext field. Signed-off-by: Martin Storsjö <martin@martin.st>
* avcodec: Set flags2 default value depending on availabilityMartin Storsjö2011-11-04
| | | | | | | This makes the code compile when FF_API_X264_GLOBAL_OPTS or FF_API_LAME_GLOBAL_OPTS is 0. Signed-off-by: Martin Storsjö <martin@martin.st>
* avcodec: Make sure codec_type is set by avcodec_get_context_defaults2Martin Storsjö2011-11-03
| | | | | | | | | | This function used to set codec_type. With the current fallback implementation based on avcodec_get_context_defaults3, codec_type won't be set to the value passed in, but will be set to AVMEDIA_TYPE_UNKNOWN. Legacy callers of this function might expect this field to be set to the value passed in. Signed-off-by: Martin Storsjö <martin@martin.st>
* add -err_filter AVOptions to access flag-based error recognitionDustin Brody2011-10-22
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavc: make avcodec_get_context_defaults3 "officially" publicAnton Khirnov2011-10-19
| | | | Deprecate avcodec_get_context_defaults/avcodec_get_context_defaults2
* lavc: rename deprecation symbol FF_API_VERY_AGGRESSIVE to FF_API_ERDustin Brody2011-10-14
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*Anton Khirnov2011-10-12
|
* AVOptions: add new API for enumerating children.Anton Khirnov2011-10-12
| | | | | | | | | This will allow the caller to enumerate child contexts in a generic way and since the API is recursive, it also allows for deeper nesting (e.g. AVFormatContext->AVIOContext->URLContext) This will also allow the new setting/reading API to transparently apply to children contexts.
* lavc: use designated initializers for av_codec_context_classAnton Khirnov2011-10-05
|
* lavc: add video/audio/encoding flags to global_quality optionAnton Khirnov2011-10-01
|
* Remove some forgotten AVCodecContext.palctrl usage.Anton Khirnov2011-09-21
|
* ac3dec: actually use drc_scale private optionAnton Khirnov2011-09-21
|
* avconv: remove me_threshold option.Anton Khirnov2011-09-11
| | | | It's only shadowing the AVOption with the same name.
* AVOptions: deprecate av_opt_set_defaults2Anton Khirnov2011-09-07
| | | | | | It's a hack which was created to allow for multiple options with different defaults to refer to same field (e.g. 'b' vs 'ab'). There is no need for it anymore.
* libx264: add 'direct-pred' private optionAnton Khirnov2011-09-07
| | | | Deprecate AVCodecContext.directpred
* libx264: add 'partitions' private optionAnton Khirnov2011-09-07
| | | | Deprecate AVCodecContext.partitions.
* libx264: add 'cplxblur' private optionAnton Khirnov2011-09-06
| | | | Deprecate AVCodecContext.complexityblur
* libx264: add 'deblock' private optionAnton Khirnov2011-09-06
| | | | Deprecate AVCodecContext.deblockalpha/deblockbeta
* libx264: add 'b-bias' private optionAnton Khirnov2011-09-06
| | | | Deprecate AVCodecContext.bframebias.
* libx264: fix setting some options.Anton Khirnov2011-09-06
| | | | | | | | | | | Specifically: gop_size, max_b_frames, scenechange_threshold, qmin, qmax, max_qdiff, qblur, qcompress and refs. Change their default values to -1 and only use them if the user explicitly set them. Otherwise x264 defaults are used. Move setting those options after x264_param_default_preset(), so they don't get overwritten by it.
* lavc: fix type for thread_type optionAnton Khirnov2011-09-04
| | | | It should be flags, not int.
* lavf,lavc,sws: add {avcodec,avformat,sws}_get_class() functions.Anton Khirnov2011-09-03
|
* AVOptions: add AV_OPT_SEARCH_FAKE_OBJ flag for av_opt_find().Anton Khirnov2011-09-03
| | | | | It allows to search for options only with AVClass, without allocating the corresponding context.
* mpeg12: add 'scan_offset' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG_SVCD_SCAN_OFFSET
* h263/p encoder: add 'structured_slices' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG_H263P_SLICE_STRUCT
* h263/p encoder: add 'obmc' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG_OBMC
* h263p encoder: add 'aiv' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG_H263P_AIV
* h263p encoder: add 'umv' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG_H263P_UMV
* mpeg12enc/mpeg4videoenc: add 'alternate_scan' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG_ALT_SCAN
* mjpegdec: add 'extern_huff' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG_EXTERN_HUFF
* mpeg4enc: add 'data_partitioning' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG_PART
* libx264: add 'mbtree' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_MBTREE
* libx264: add 'psy' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_PSY
* libmp3lame: add 'reservoir' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_BIT_RESERVOIR
* mpeg2enc: add 'non_linear_quant' private optionAnton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_NON_LINEAR_QUANT
* mpeg12enc: add drop_frame_timecode private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_DROP_FRAME_TIMECODE
* mpeg12enc: add intra_vlc private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_INTRA_VLC.
* libx264: add 'aud' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_AUD.
* libx264: add 'fast-pskip' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_FASTPSKIP.
* libx264: add '8x8dct' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_8X8DCT.
* libx264: add 'mixed-refs' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_MIXED_REFS.
* libx264: add 'weightb' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_BPYRAMID.
* libx264: add 'b-pyramid' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_BPYRAMID.
* libx264: add 'intra-refresh' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_INTRA_REFRESH.
* libx264: add 'ssim' private option.Anton Khirnov2011-08-31
| | | | Deprecate CODEC_FLAG2_SSIM.
* libx264: add 'crf_max' private option.Anton Khirnov2011-08-24
| | | | Deprecate corresponding global option.
* libx264: add 'weightp' private option.Anton Khirnov2011-08-24
| | | | Deprecate corresponding global option.