summaryrefslogtreecommitdiffstats
path: root/libavcodec/options.c
Commit message (Collapse)AuthorAgeFilesLines
* lavc: make avcodec_get_context_defaults3 "officially" publicAnton Khirnov2011-10-191-20/+20
| | | | Deprecate avcodec_get_context_defaults/avcodec_get_context_defaults2
* lavc: rename deprecation symbol FF_API_VERY_AGGRESSIVE to FF_API_ERDustin Brody2011-10-141-2/+2
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*Anton Khirnov2011-10-121-388/+388
|
* AVOptions: add new API for enumerating children.Anton Khirnov2011-10-121-13/+19
| | | | | | | | | 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-051-1/+8
|
* lavc: add video/audio/encoding flags to global_quality optionAnton Khirnov2011-10-011-1/+1
|
* Remove some forgotten AVCodecContext.palctrl usage.Anton Khirnov2011-09-211-2/+0
|
* ac3dec: actually use drc_scale private optionAnton Khirnov2011-09-211-1/+1
|
* avconv: remove me_threshold option.Anton Khirnov2011-09-111-1/+1
| | | | It's only shadowing the AVOption with the same name.
* AVOptions: deprecate av_opt_set_defaults2Anton Khirnov2011-09-071-8/+1
| | | | | | 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-071-1/+1
| | | | Deprecate AVCodecContext.directpred
* libx264: add 'partitions' private optionAnton Khirnov2011-09-071-1/+1
| | | | Deprecate AVCodecContext.partitions.
* libx264: add 'cplxblur' private optionAnton Khirnov2011-09-061-1/+1
| | | | Deprecate AVCodecContext.complexityblur
* libx264: add 'deblock' private optionAnton Khirnov2011-09-061-0/+2
| | | | Deprecate AVCodecContext.deblockalpha/deblockbeta
* libx264: add 'b-bias' private optionAnton Khirnov2011-09-061-0/+2
| | | | Deprecate AVCodecContext.bframebias.
* libx264: fix setting some options.Anton Khirnov2011-09-061-4/+4
| | | | | | | | | | | 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-041-1/+1
| | | | It should be flags, not int.
* lavf,lavc,sws: add {avcodec,avformat,sws}_get_class() functions.Anton Khirnov2011-09-031-0/+5
|
* AVOptions: add AV_OPT_SEARCH_FAKE_OBJ flag for av_opt_find().Anton Khirnov2011-09-031-1/+1
| | | | | It allows to search for options only with AVClass, without allocating the corresponding context.
* mpeg12: add 'scan_offset' private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG_SVCD_SCAN_OFFSET
* h263/p encoder: add 'structured_slices' private option.Anton Khirnov2011-08-311-1/+1
| | | | Deprecate CODEC_FLAG_H263P_SLICE_STRUCT
* h263/p encoder: add 'obmc' private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG_OBMC
* h263p encoder: add 'aiv' private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG_H263P_AIV
* h263p encoder: add 'umv' private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG_H263P_UMV
* mpeg12enc/mpeg4videoenc: add 'alternate_scan' private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG_ALT_SCAN
* mjpegdec: add 'extern_huff' private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG_EXTERN_HUFF
* mpeg4enc: add 'data_partitioning' private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG_PART
* libx264: add 'mbtree' private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG2_MBTREE
* libx264: add 'psy' private option.Anton Khirnov2011-08-311-1/+1
| | | | Deprecate CODEC_FLAG2_PSY
* libmp3lame: add 'reservoir' private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG2_BIT_RESERVOIR
* mpeg2enc: add 'non_linear_quant' private optionAnton Khirnov2011-08-311-1/+1
| | | | Deprecate CODEC_FLAG2_NON_LINEAR_QUANT
* mpeg12enc: add drop_frame_timecode private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG2_DROP_FRAME_TIMECODE
* mpeg12enc: add intra_vlc private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG2_INTRA_VLC.
* libx264: add 'aud' private option.Anton Khirnov2011-08-311-1/+1
| | | | Deprecate CODEC_FLAG2_AUD.
* libx264: add 'fast-pskip' private option.Anton Khirnov2011-08-311-1/+1
| | | | Deprecate CODEC_FLAG2_FASTPSKIP.
* libx264: add '8x8dct' private option.Anton Khirnov2011-08-311-1/+1
| | | | Deprecate CODEC_FLAG2_8X8DCT.
* libx264: add 'mixed-refs' private option.Anton Khirnov2011-08-311-1/+1
| | | | Deprecate CODEC_FLAG2_MIXED_REFS.
* libx264: add 'weightb' private option.Anton Khirnov2011-08-311-1/+1
| | | | Deprecate CODEC_FLAG2_BPYRAMID.
* libx264: add 'b-pyramid' private option.Anton Khirnov2011-08-311-0/+2
| | | | Deprecate CODEC_FLAG2_BPYRAMID.
* libx264: add 'intra-refresh' private option.Anton Khirnov2011-08-311-2/+0
| | | | Deprecate CODEC_FLAG2_INTRA_REFRESH.
* libx264: add 'ssim' private option.Anton Khirnov2011-08-311-1/+1
| | | | Deprecate CODEC_FLAG2_SSIM.
* libx264: add 'crf_max' private option.Anton Khirnov2011-08-241-0/+2
| | | | Deprecate corresponding global option.
* libx264: add 'weightp' private option.Anton Khirnov2011-08-241-1/+3
| | | | Deprecate corresponding global option.
* libx264: add 'rc_lookahead' private option.Anton Khirnov2011-08-241-1/+1
| | | | Deprecate corresponding global option.
* libx264: add 'psy_trellis' private option.Anton Khirnov2011-08-241-3/+1
| | | | Deprecate corresponding global option.
* libx264: add 'psy_rd' private option.Anton Khirnov2011-08-241-1/+3
| | | | Deprecate corresponding global option.
* libx264: add 'aq_strength' private option.Anton Khirnov2011-08-241-1/+1
| | | | Deprecate corresponding global option.
* libx264: add 'aq_mode' private option.Anton Khirnov2011-08-241-1/+3
| | | | Deprecate corresponding global option.
* libx264: add 'cqp' private option.Anton Khirnov2011-08-241-1/+1
| | | | Deprecate corresponding global option.
* libx264: add 'crf' private option.Anton Khirnov2011-08-241-0/+2
| | | | | | | Deprecate corresponding global option. Ideally all x264 private options should be generated automatically, but x264 doesn't provide the API for this yet.
OpenPOWER on IntegriCloud