History | View | Annotate | Download (13.2 KB)
Make avfilter_insert_filter() log the names of the filters betweenwhich it inserts the new filter.
Originally committed as revision 21177 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make avfilter_insert_filter() print the instance name of theauto-inserted scale filter, rather than the filter name, as thisprovides more information.
Originally committed as revision 21123 to svn://svn.ffmpeg.org/ffmpeg/trunk
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() andXXX_license() functions, consistent with the rest of FFmpeg.
Originally committed as revision 21005 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add a slice_dir parameter to avfilter_draw_slice().
Avoid the need to implement slice direction detection code, thusreducing code duplication.
See the thread:"[FFmpeg-devel] [PATCH] Add a slice_dir parameter to avfilter_start_frame()".
Originally committed as revision 20734 to svn://svn.ffmpeg.org/ffmpeg/trunk
Implement avfilter_next().
Originally committed as revision 20607 to svn://svn.ffmpeg.org/ffmpeg/trunk
Implement a new registration system for filters.
Create a new static array containing pointers to the AVFilterdefinitions, so that the non-constant next filter in the AVFilterstruct is not anymore required and the AVFilter definitions may bestored in shareable memory....
Add functions to return library license and library configuration.
Originally committed as revision 20547 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make avfilter_get_video_buffer() useavfilter_default_get_video_buffer() if the get_video_buffer() callbackis not defined in a filter.
Libavfilter filters author have to explicitely define theget_video_buffer() callback if they want the buffer to be requested to...
Introduce first_avfilter and use that, together with AVFilter.next,for registering and finding filters, rather than use the structAVFilterList, which is removed.
Simplify the filter registration management code.
Originally committed as revision 20387 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make dprintf_link() show the name of the link pixel format.
Originally committed as revision 20372 to svn://svn.ffmpeg.org/ffmpeg/trunk
Fix recursive avfilter_poll_frame(). It was doingmin = FFMIN)which, since FFMIN is a macro, was calling itselftwice for every input, causing an exponential cost in time.
Originally committed as revision 20295 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make avfilter_get_video_buffer() recursive.
When called on a link with a filter whose destination pad has not aget_video_buffer callback defined, it will callavfilter_get_video_buffer() on the first output link of thedestination filer, rather than use avfilter_default_get_buffer(), so...
Implement trace messages logging in the filterchain processing.
It is only enabled when the DEBUG symbol is defined.
Originally committed as revision 20187 to svn://svn.ffmpeg.org/ffmpeg/trunk
Also copy pixel_aspect when copying the picref in avfilter_start_frame.This avoids a division by zero in '[in]fifo,scale[out]'
Originally committed as revision 18507 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make static the list of registered filters.
Originally committed as revision 18198 to svn://svn.ffmpeg.org/ffmpeg/trunk
Reindent after the last commit, while at it also add some spaces forimproving readability.
Originally committed as revision 16566 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make avfilter_open() set to NULL the pads and the filters when thecorresponding count is zero, rather than allocate a 16 bytes sizedblock for them. Improve safety.
Originally committed as revision 16565 to svn://svn.ffmpeg.org/ffmpeg/trunk
Implement the avfilter_default_draw_slice() handler and use it inavfilter_draw_slice() when the draw_slice callback is not defined inthe input pad.
Originally committed as revision 16554 to svn://svn.ffmpeg.org/ffmpeg/trunk
Use PIX_FMT_NONE to silence icc warning #188:enumerated type mixed with another type
Originally committed as revision 15942 to svn://svn.ffmpeg.org/ffmpeg/trunk
Implement avfilter_version().
Originally committed as revision 14669 to svn://svn.ffmpeg.org/ffmpeg/trunk
Use full path for #includes from another directory.
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
fix AVClass for avfilter
Originally committed as revision 12357 to svn://svn.ffmpeg.org/ffmpeg/trunk
Do not copy more data than neededCommited in SoC by Vitor Sessak on 2008-02-15 21:11:35
Originally committed as revision 12061 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove header now made uselessCommited in SoC by Vitor Sessak on 2008-02-12 20:59:51
Originally committed as revision 12060 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove unneeded function.
Commited in SoC by Vitor Sessak on 2008-02-12 20:54:11
Originally committed as revision 12059 to svn://svn.ffmpeg.org/ffmpeg/trunk
Missed this file in my conditional compilation patchCommited in SoC by Vitor Sessak on 2008-02-12 20:40:32
Originally committed as revision 12058 to svn://svn.ffmpeg.org/ffmpeg/trunk
SimplifyCommited in SoC by Vitor Sessak on 2008-02-11 18:19:37
Originally committed as revision 12057 to svn://svn.ffmpeg.org/ffmpeg/trunk
SimplifyCommited in SoC by Vitor Sessak on 2008-02-11 17:35:13
Originally committed as revision 12056 to svn://svn.ffmpeg.org/ffmpeg/trunk
Indent after last commitCommited in SoC by Vitor Sessak on 2008-02-11 17:29:12
Originally committed as revision 12055 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove unneded elseCommited in SoC by Vitor Sessak on 2008-02-11 17:18:16
Originally committed as revision 12054 to svn://svn.ffmpeg.org/ffmpeg/trunk
Cosmetical: indentationCommited in SoC by Vitor Sessak on 2008-02-11 17:17:15
Originally committed as revision 12053 to svn://svn.ffmpeg.org/ffmpeg/trunk
Nit: AlignmentCommited in SoC by Vitor Sessak on 2008-02-11 17:16:35
Originally committed as revision 12052 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove useless ()Commited in SoC by Vitor Sessak on 2008-02-11 17:16:05
Originally committed as revision 12051 to svn://svn.ffmpeg.org/ffmpeg/trunk
Do not always fail for circular filter chainsCommited in SoC by Vitor Sessak on 2008-02-10 16:52:54
Originally committed as revision 12050 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove unused var (dead code leftover?).Commited in SoC by Vitor Sessak on 2008-02-10 09:55:55
Originally committed as revision 12049 to svn://svn.ffmpeg.org/ffmpeg/trunk
Avoid link_dpad() overuse in avfilter_start_frame()Commited in SoC by Vitor Sessak on 2008-02-10 09:53:00
Originally committed as revision 12048 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add context to av_log()Commited in SoC by Vitor Sessak on 2008-02-10 09:05:39
Originally committed as revision 12047 to svn://svn.ffmpeg.org/ffmpeg/trunk
Merge loopsCommited in SoC by Vitor Sessak on 2008-02-10 09:01:31
Originally committed as revision 12046 to svn://svn.ffmpeg.org/ffmpeg/trunk
Coding style changesCommited in SoC by Vitor Sessak on 2008-02-09 23:43:45
Originally committed as revision 12045 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove unneded headersCommited in SoC by Vitor Sessak on 2008-02-09 23:35:19
Originally committed as revision 12044 to svn://svn.ffmpeg.org/ffmpeg/trunk
Nits: more punctuation and capitalizationCommited in SoC by Vitor Sessak on 2008-02-09 20:02:29
Originally committed as revision 12043 to svn://svn.ffmpeg.org/ffmpeg/trunk
Move setting the pts of the copied frame to a more adequated place.Suggested by Bobby Bingham.
Commited in SoC by Vitor Sessak on 2008-02-09 16:56:55
Originally committed as revision 12042 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add const to silence warningsCommited in SoC by Vitor Sessak on 2008-02-09 15:59:47
Originally committed as revision 12041 to svn://svn.ffmpeg.org/ffmpeg/trunk
The filter framework as is hangs with filters thatmodify the input buffer, even if it asks for the rightpermission. This is a fix for that.See "Box blurring with libavfilter" thread in libav-user.
Commited in SoC by Vitor Sessak on 2008-02-09 11:03:35...
Implement poll_frame() method. Fix ffmpeg.c bug withvf_fps filter.
Commited in SoC by Vitor Sessak on 2008-02-06 19:55:36
Originally committed as revision 12039 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add movie file video source filter.
Commited in SoC by on 2008-01-31 20:55:50
Originally committed as revision 12038 to svn://svn.ffmpeg.org/ffmpeg/trunk
Presentation timestamp (PTS) modification filter
Commited in SoC by on 2008-01-12 00:35:29
Originally committed as revision 12037 to svn://svn.ffmpeg.org/ffmpeg/trunk
Rename filterCommited in SoC by Vitor Sessak on 2008-01-06 17:03:21
Originally committed as revision 12036 to svn://svn.ffmpeg.org/ffmpeg/trunk
90 degrees counter-clockwise rotation filterCommited in SoC by Vitor Sessak on 2008-01-06 13:19:12
Originally committed as revision 12035 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add an equivalent to the mplayer format filter
Commited in SoC by Bobby Bingham on 2007-12-24 21:53:10
Originally committed as revision 12034 to svn://svn.ffmpeg.org/ffmpeg/trunk
Change the passthrough filter to a noformat filter. It's now similar tothe mplayer noformat filter except that the default behavior if no formatsare specified is to allow allow all formats (ie. virtually the same as theold passthrough behavior)
Commited in SoC by Bobby Bingham on 2007-12-24 21:42:56...
Indentation
Commited in SoC by Bobby Bingham on 2007-12-24 03:24:26
Originally committed as revision 12032 to svn://svn.ffmpeg.org/ffmpeg/trunk
Rework link property configuration system.This can now handle filters which are added to graphs out of order,including auto-inserted scale filters. As an added bonus, it cannow detect circular filter chains which wouldn't work anyway.
Commited in SoC by Bobby Bingham on 2007-12-24 03:22:10...
Add horizontal flip filter.
Commited in SoC by on 2007-12-21 09:21:29
Originally committed as revision 12030 to svn://svn.ffmpeg.org/ffmpeg/trunk
Need to be careful when dealing with references.
Commited in SoC by Bobby Bingham on 2007-12-20 23:38:49
Originally committed as revision 12029 to svn://svn.ffmpeg.org/ffmpeg/trunk
When inserting a filter, don't lose any information we may already haveabout the colorspaces supported across the link.
Commited in SoC by Bobby Bingham on 2007-12-20 20:47:11
Originally committed as revision 12028 to svn://svn.ffmpeg.org/ffmpeg/trunk
Rewrite colorspace negotiation.
Commited in SoC by Bobby Bingham on 2007-12-20 19:36:26
Originally committed as revision 12027 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make filter auto-insertion code its own function.
Commited in SoC by Bobby Bingham on 2007-11-04 22:03:14
Originally committed as revision 12026 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove no-longer accurate comment
Commited in SoC by Bobby Bingham on 2007-11-04 21:21:25
Originally committed as revision 12025 to svn://svn.ffmpeg.org/ffmpeg/trunk
Check for error so thatavfilter_open(av_filter_get_by_name(...etc...)) failsgracefully.
Commited in SoC by Vitor Sessak on 2007-10-29 16:00:27
Originally committed as revision 12024 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove dummy and ppm filters which were only for testing.Remove rgb2bgr filter now that there is a proper colorspace conversion filter.
Commited in SoC by Bobby Bingham on 2007-08-20 18:01:34
Originally committed as revision 12023 to svn://svn.ffmpeg.org/ffmpeg/trunk
Image negating filter
Commited in SoC by Bobby Bingham on 2007-08-20 05:27:17
Originally committed as revision 12022 to svn://svn.ffmpeg.org/ffmpeg/trunk
Auto insert scale filter to convert colrospaces when needed
Commited in SoC by Bobby Bingham on 2007-08-20 05:24:57
Originally committed as revision 12021 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add scale/colorspace conversion filter
Commited in SoC by Bobby Bingham on 2007-08-19 17:35:59
Originally committed as revision 12020 to svn://svn.ffmpeg.org/ffmpeg/trunk
Prefix names of filter structs
Commited in SoC by Bobby Bingham on 2007-08-18 18:17:30
Originally committed as revision 12019 to svn://svn.ffmpeg.org/ffmpeg/trunk
Rename "buffer" filter to "fifo"
Commited in SoC by Bobby Bingham on 2007-08-18 16:40:31
Originally committed as revision 12018 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add a filter to output the same video to two outputs
Commited in SoC by Bobby Bingham on 2007-08-18 03:38:40
Originally committed as revision 12017 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add a filter to act as a buffer between filters which may output multipleframes for a single call to request_filter(), and a following filter whichassumes it will only receive one frame per call.
Commited in SoC by Bobby Bingham on 2007-08-18 03:17:52...
Use av_freep instead of av_free
Commited in SoC by Bobby Bingham on 2007-08-17 23:43:23
Originally committed as revision 12015 to svn://svn.ffmpeg.org/ffmpeg/trunk
Rename avfilter_create to avfilter_open and remove the wrapper functionavfilter_create_by_name.
Commited in SoC by Bobby Bingham on 2007-08-17 23:39:55
Originally committed as revision 12014 to svn://svn.ffmpeg.org/ffmpeg/trunk
Change registered filter list to a linked list
Commited in SoC by Bobby Bingham on 2007-08-17 23:24:32
Originally committed as revision 12013 to svn://svn.ffmpeg.org/ffmpeg/trunk
Be more consistent in style of code for falling back to defaults.
Commited in SoC by Bobby Bingham on 2007-08-17 23:16:38
Originally committed as revision 12012 to svn://svn.ffmpeg.org/ffmpeg/trunk
replace memcpy with assignment
Commited in SoC by Bobby Bingham on 2007-08-17 23:04:33
Originally committed as revision 12011 to svn://svn.ffmpeg.org/ffmpeg/trunk
Revert braindead linked list of permissions
Commited in SoC by Bobby Bingham on 2007-08-17 22:44:03
Originally committed as revision 12010 to svn://svn.ffmpeg.org/ffmpeg/trunk
Track the permissions that have been given out to each picture.This should make it easier to know what can be done to a buffer onceit's been passed to your filter without falling back to copying it "justto be safe".
Commited in SoC by Bobby Bingham on 2007-08-17 18:21:07...
Allow filters to set the requirements on permissions for incoming buffers.
Commited in SoC by Bobby Bingham on 2007-08-17 16:40:26
Originally committed as revision 12008 to svn://svn.ffmpeg.org/ffmpeg/trunk
Use macros for better readability
Commited in SoC by Bobby Bingham on 2007-08-17 15:18:59
Originally committed as revision 12007 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove the data parameter from draw_slice(). It's unneeded and often morework than it's worth.
Commited in SoC by Bobby Bingham on 2007-08-17 14:39:11
Originally committed as revision 12006 to svn://svn.ffmpeg.org/ffmpeg/trunk
Remove test program and test video output module since ffplay can be usedfor testing for a while now.
Commited in SoC by Bobby Bingham on 2007-08-14 22:31:51
Originally committed as revision 12005 to svn://svn.ffmpeg.org/ffmpeg/trunk
Allow creation of filter graphs from a graph description structure whichcan be created programmatically or loaded from a file.
Commited in SoC by Bobby Bingham on 2007-08-14 22:27:05
Originally committed as revision 12004 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add a filter to overlay one video on top of another, picture-in-picture style.
Commited in SoC by Bobby Bingham on 2007-08-13 16:53:19
Originally committed as revision 12003 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add a filter to modify the framerate.This demonstrates differing number of input and output frames.
Commited in SoC by Bobby Bingham on 2007-08-11 17:50:36
Originally committed as revision 12002 to svn://svn.ffmpeg.org/ffmpeg/trunk
Let request_frame() indicate success or failure
Commited in SoC by Bobby Bingham on 2007-08-11 17:42:36
Originally committed as revision 12001 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add a vertical flip filter
Commited in SoC by Bobby Bingham on 2007-08-08 17:22:54
Originally committed as revision 12000 to svn://svn.ffmpeg.org/ffmpeg/trunk
Helper functions for adding new pads to filters at runtime
Commited in SoC by Bobby Bingham on 2007-08-07 22:31:56
Originally committed as revision 11999 to svn://svn.ffmpeg.org/ffmpeg/trunk
Separate the process of creating links between filters from that of configuringthe links.
Commited in SoC by Bobby Bingham on 2007-08-07 21:02:18
Originally committed as revision 11998 to svn://svn.ffmpeg.org/ffmpeg/trunk
Move default entry point implementations to their own file.Make them externally visible because they may be useful for filters to use.
Commited in SoC by Bobby Bingham on 2007-08-02 15:14:05
Originally committed as revision 11997 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make the filter graph just another normal filter.
Commited in SoC by Bobby Bingham on 2007-07-31 20:08:38
Originally committed as revision 11996 to svn://svn.ffmpeg.org/ffmpeg/trunk
Make input/output pads modifiable on a per-instance basis.This makes it possible to change filter callbacks (eg. to a SIMD versionon supported processors). It also allows filters to change their owninput and output pads.
Commited in SoC by Bobby Bingham on 2007-07-31 19:20:54...
Fix warnings
Commited in SoC by Bobby Bingham on 2007-07-30 18:56:40
Originally committed as revision 11994 to svn://svn.ffmpeg.org/ffmpeg/trunk
Cosmetics: fix indentation
Commited in SoC by Bobby Bingham on 2007-07-30 15:54:16
Originally committed as revision 11993 to svn://svn.ffmpeg.org/ffmpeg/trunk
Fix some potential segfaults.
Commited in SoC by Bobby Bingham on 2007-07-30 15:53:33
Originally committed as revision 11992 to svn://svn.ffmpeg.org/ffmpeg/trunk
Allow code to pass data to filters it creates.
Commited in SoC by Bobby Bingham on 2007-07-15 16:45:50
Originally committed as revision 11991 to svn://svn.ffmpeg.org/ffmpeg/trunk
Split filter graphs out into their own source & header files.
Commited in SoC by Bobby Bingham on 2007-07-14 21:20:21
Originally committed as revision 11990 to svn://svn.ffmpeg.org/ffmpeg/trunk
Use av_strdup/av_free instead of strdup/free
Commited in SoC by Bobby Bingham on 2007-07-14 20:13:57
Originally committed as revision 11989 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add a simple filter graph structure and functions
Commited in SoC by Bobby Bingham on 2007-07-14 20:12:54
Originally committed as revision 11988 to svn://svn.ffmpeg.org/ffmpeg/trunk
Allow giving filter instances names, in anticipation of the upcomingAVFilterGraph structure and related functions.
Commited in SoC by Bobby Bingham on 2007-07-14 19:33:28
Originally committed as revision 11987 to svn://svn.ffmpeg.org/ffmpeg/trunk
cosmetics: vertical alignment
Commited in SoC by Bobby Bingham on 2007-07-14 17:34:04
Originally committed as revision 11986 to svn://svn.ffmpeg.org/ffmpeg/trunk
Add pts to frame references
Commited in SoC by Bobby Bingham on 2007-07-14 17:31:40
Originally committed as revision 11985 to svn://svn.ffmpeg.org/ffmpeg/trunk
Actually fail when colorspaces don't match
Commited in SoC by Bobby Bingham on 2007-07-08 17:58:45
Originally committed as revision 11984 to svn://svn.ffmpeg.org/ffmpeg/trunk