summaryrefslogtreecommitdiffstats
path: root/libavfilter/avfilter.h
Commit message (Collapse)AuthorAgeFilesLines
* lavfi: add a frame_rate field to AVFilterLink.Nicolas George2015-11-091-0/+12
| | | | | | (cherry picked from ffmpeg commit 7b42036b3b23c85f473bf9369e37fa8da22eaf93) Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: Drop deprecated AVFilterBuffer* codeVittorio Giovara2015-08-281-219/+0
| | | | Deprecated in 11/2012.
* lavfi: Drop deprecated *_count suffixed variablesVittorio Giovara2015-08-281-15/+0
| | | | Deprecated in 06/2012.
* lavfi: Drop deprecated public AVFilterPad structVittorio Giovara2015-08-281-139/+0
| | | | Deprecated in 06/2012.
* lavfi: Move avcodec header to the only filter needing itVittorio Giovara2015-05-191-1/+0
| | | | af_ashowinfo, due to the enum AVAudioServiceType use.
* avfilter: Document avfilter_graph_alloc return valueFederico Tomassetti2015-03-211-0/+2
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* avfilter: add documentation for needs_writableVittorio Giovara2014-01-091-0/+6
|
* avfilter: have avfilter_get_by_name return const for next bumpVittorio Giovara2013-10-281-0/+3
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: allow user-provided execute() callbacksAnton Khirnov2013-09-281-0/+50
|
* lavfi: add const to the AVFilter parameter of avfilter_graph_create_filter()Anton Khirnov2013-08-041-1/+1
| | | | This function should never modify the filter.
* Add missing deprecation attributesDiego Biurrun2013-07-271-2/+3
|
* lavfi doxy: improve/extend AVFilter doxy.Anton Khirnov2013-06-041-18/+86
|
* lavfi: add a slice threading infrastructureAnton Khirnov2013-05-241-0/+63
| | | | Mostly based on libavcodec's
* lavfi doxy: add a page for lavfi.Anton Khirnov2013-05-171-0/+15
|
* lavfi: change the filter registering system to match the other librariesAnton Khirnov2013-04-111-0/+16
| | | | Removes an arbitrary hardcoded limit on the number of filters.
* lavfi: add a function for counting elements in AVFilterPad arrays.Anton Khirnov2013-04-111-0/+6
| | | | | The caller needs to know what valid indices can be passed to avfilter_pad_get_name/type.
* lavfi: mark filters with dynamic number of inputs or outputs with special flagsAnton Khirnov2013-04-111-0/+18
| | | | | This will be useful in avtools in the following commits. Any other caller might also want to know this information.
* lavfi: add avfilter_init_dict() for initializing a filter with a dict.Anton Khirnov2013-04-111-0/+22
|
* lavfi: add avfilter_init_str() to replace avfilter_init_filter().Anton Khirnov2013-04-111-0/+16
| | | | Drop the unused opaque parameter from its signature.
* lavfi: make avfilter_free() remove the filter from its graph.Anton Khirnov2013-04-111-1/+2
|
* lavfi: add AVFilterContext.graph.Anton Khirnov2013-04-111-0/+2
| | | | It will be useful in the following commits.
* lavfi: deprecate avfilter_graph_add_filter().Anton Khirnov2013-04-111-0/+6
| | | | | | Since this function adds a standalone filter to a filter graph and we do not support creating such filters, there is no reason for this function to exist.
* lavfi: replace avfilter_open() with avfilter_graph_alloc_filter().Anton Khirnov2013-04-111-2/+24
| | | | | | | Since we do not support "standalone" filters not attached to an AVFilterGraph, we should not have a public function to create such filters. In addition that function is horribly named, the action it does cannot be possibly described as "opening" a filter.
* lavfi: merge avfiltergraph.h into avfilter.hAnton Khirnov2013-04-111-0/+154
| | | | | We do not support using filters without AVFilterGraph in practice anyway, so there is no point in pretending we do.
* lavfi: add const to the pads parameter of avfilter_pad_get_name/typeAnton Khirnov2013-04-111-2/+2
|
* lavfi: add const to AVFilterContext.filter.Anton Khirnov2013-04-111-1/+1
| | | | lavfi should never modify the filter through that pointer.
* lavfi: add avfilter_get_class().Anton Khirnov2013-04-091-0/+7
| | | | | Useful for examining options, the same as the corresponding functions for the other libs.
* lavfi: remove now unused args parameter from AVFilter.initAnton Khirnov2013-04-091-3/+3
|
* af_resample: switch to an AVOptions-based system.Anton Khirnov2013-04-091-0/+7
|
* lavfi: switch to an AVOptions-based system.Anton Khirnov2013-04-091-0/+6
|
* lavfi: switch to AVFrame.Anton Khirnov2013-03-081-6/+22
| | | | | Deprecate AVFilterBuffer/AVFilterBufferRef and everything related to it and use AVFrame instead.
* lavfi: merge start_frame/draw_slice/end_frameAnton Khirnov2012-11-281-37/+7
| | | | | Any alleged performance benefits gained from the split are purely mythological and do not justify added code complexity.
* Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles2012-11-111-1/+1
| | | | Also reorder some other #include when applicable.
* Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov2012-10-081-1/+1
|
* lavfi: add error handling to end_frame().Anton Khirnov2012-07-221-1/+3
|
* lavfi: add error handling to draw_slice().Anton Khirnov2012-07-221-1/+3
|
* lavfi: add error handling to start_frame().Anton Khirnov2012-07-221-1/+4
|
* lavfi: add avfilter_unref_bufferp()Robert Nagy2012-07-201-0/+12
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: add error handling to filter_samples().Anton Khirnov2012-07-091-1/+5
|
* lavfi: reorder AVFilterLink fields.Anton Khirnov2012-06-261-27/+27
| | | | Move private fields to the private section, remove holes.
* lavfi: reorder AVFilterContext fields.Anton Khirnov2012-06-261-7/+6
| | | | Place related fields together, remove holes.
* lavfi: reorder AVFilter fields.Anton Khirnov2012-06-261-9/+17
| | | | | Place related fields together, remove holes, move private fields to the end and mark them as private.
* lavfi: reorder AVFilterBufferRef fields.Anton Khirnov2012-06-261-17/+18
| | | | Place related fields together, remove holes.
* lavfi: reorder AVFilterBuffer fields.Anton Khirnov2012-06-261-16/+15
| | | | Place related fields together, remove holes.
* lavfi: remove disabled FF_API_FILTERS_PUBLIC cruftAnton Khirnov2012-06-261-114/+0
|
* lavfi: remove disabled FF_API_DEFAULT_CONFIG_OUTPUT_LINK cruftAnton Khirnov2012-06-261-6/+0
|
* lavfi: remove disabled FF_API_SAMPLERATE64 cruftAnton Khirnov2012-06-261-4/+0
|
* lavfi: remove 'opaque' parameter from AVFilter.init()Anton Khirnov2012-06-261-3/+1
| | | | | | It is not used in any filters currently and is inherently evil. If passing binary data to filters is required in the future, it should be done with some AVOptions-based system.
* lavfi: allow audio filters to request a given number of samples.Anton Khirnov2012-06-221-0/+9
| | | | This makes synchronization simpler for filters with multiple inputs.
* lavfi: support automatically inserting the fifo filter when needed.Anton Khirnov2012-06-221-0/+8
| | | | This breaks libavfilter ABI.
OpenPOWER on IntegriCloud