| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename --enable-swscaler --> enable-swscale to be consistent with the | Diego Biurrun | 2008-03-10 | 1 | -1/+1 |
* | cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile. | Diego Biurrun | 2008-03-08 | 1 | -7/+5 |
* | simplify library version handling | Måns Rullgård | 2008-03-07 | 1 | -2/+0 |
* | fix AVClass for avfilter | Måns Rullgård | 2008-03-07 | 1 | -3/+6 |
* | consolidate CFLAGS, LDFLAGS, EXTRALIBS assignment | Måns Rullgård | 2008-03-06 | 1 | -12/+3 |
* | Make av_class a pointer to a const AVClass. Addresses one warning in | Panagiotis Issaris | 2008-03-06 | 1 | -1/+1 |
* | Add correct version number to shared libavfilter | Vitor Sessak | 2008-03-05 | 1 | -2/+2 |
* | Fix avfilter compilation with --enable-shared and no libswscaler | Vitor Sessak | 2008-03-05 | 1 | -1/+5 |
* | Fix libavfilter compilation and make it more in line | Vitor Sessak | 2008-03-03 | 2 | -9/+5 |
* | Make libavfilter define its version like the other libav* libs | Vitor Sessak | 2008-02-26 | 1 | -1/+11 |
* | Ascii art to explain what avfilter_formats_changeref() does. | Michael Niedermayer | 2008-02-21 | 1 | -0/+13 |
* | cosmetic | Michael Niedermayer | 2008-02-21 | 1 | -3/+3 |
* | Better description (merge is too vague IMHO). | Michael Niedermayer | 2008-02-21 | 1 | -3/+3 |
* | Better description for merge_ref(). | Michael Niedermayer | 2008-02-21 | 1 | -1/+3 |
* | Document avfilter_formats_ref() with some ascii art. | Michael Niedermayer | 2008-02-21 | 1 | -1/+12 |
* | Remove unneeded function. | Vitor Sessak | 2008-02-15 | 1 | -3/+0 |
* | Oops | Vitor Sessak | 2008-02-15 | 1 | -1/+1 |
* | Missed this file in my conditional compilation patch | Vitor Sessak | 2008-02-15 | 1 | -0/+3 |
* | Add libavfilter_version | Víctor Paesa | 2008-02-15 | 1 | -0/+2 |
* | Remove author field | Vitor Sessak | 2008-02-15 | 1 | -1/+0 |
* | Use CodecType for pad type | Vitor Sessak | 2008-02-15 | 1 | -2/+1 |
* | Nit: remove odd whitespace | Vitor Sessak | 2008-02-15 | 1 | -1/+1 |
* | Group avfilter_poll_frame() with related funcions and add doxygen comment | Vitor Sessak | 2008-02-15 | 1 | -2/+7 |
* | Update comment to match code | Vitor Sessak | 2008-02-15 | 1 | -3/+1 |
* | Nits: punctuation and capitalization | Vitor Sessak | 2008-02-15 | 1 | -50/+50 |
* | Add const to silence warnings | Vitor Sessak | 2008-02-15 | 1 | -5/+5 |
* | Implement poll_frame() method. Fix ffmpeg.c bug with | Vitor Sessak | 2008-02-15 | 1 | -0/+13 |
* | Indentation | Vitor Sessak | 2008-02-15 | 1 | -1/+1 |
* | Rework link property configuration system. | Vitor Sessak | 2008-02-15 | 1 | -3/+10 |
* | Fix misc. warnings | Vitor Sessak | 2008-02-15 | 1 | -0/+3 |
* | Rewrite colorspace negotiation. | Vitor Sessak | 2008-02-15 | 1 | -21/+118 |
* | Add pixel aspect ratio to AVFilterPicRef structure | Vitor Sessak | 2008-02-15 | 1 | -0/+2 |
* | Add another "reuse" permission, to distinguish between the case where a | Vitor Sessak | 2008-02-15 | 1 | -1/+2 |
* | use units of 1/AV_TIME_BASE for pts rather than milliseconds | Vitor Sessak | 2008-02-15 | 1 | -1/+1 |
* | Rename avfilter_create to avfilter_open and remove the wrapper function | Vitor Sessak | 2008-02-15 | 1 | -12/+5 |
* | Revert braindead linked list of permissions | Vitor Sessak | 2008-02-15 | 1 | -37/+1 |
* | Track the permissions that have been given out to each picture. | Vitor Sessak | 2008-02-15 | 1 | -1/+37 |
* | Allow filters to set the requirements on permissions for incoming buffers. | Vitor Sessak | 2008-02-15 | 1 | -0/+28 |
* | spelling fix | Vitor Sessak | 2008-02-15 | 1 | -1/+1 |
* | Remove the data parameter from draw_slice(). It's unneeded and often more | Vitor Sessak | 2008-02-15 | 1 | -3/+2 |
* | Add many new and improve existing doxy comments. | Vitor Sessak | 2008-02-15 | 1 | -47/+207 |
* | Let request_frame() indicate success or failure | Vitor Sessak | 2008-02-15 | 1 | -2/+2 |
* | Helper functions for adding new pads to filters at runtime | Vitor Sessak | 2008-02-15 | 1 | -0/+33 |
* | Separate the process of creating links between filters from that of configuring | Vitor Sessak | 2008-02-15 | 1 | -0/+4 |
* | Move default entry point implementations to their own file. | Vitor Sessak | 2008-02-15 | 1 | -1/+5 |
* | Make input/output pads modifiable on a per-instance basis. | Vitor Sessak | 2008-02-15 | 1 | -0/+2 |
* | Make the opaque init parameter non-const. | Vitor Sessak | 2008-02-15 | 1 | -1/+1 |
* | Fix some potential segfaults. | Vitor Sessak | 2008-02-15 | 1 | -0/+3 |
* | Allow code to pass data to filters it creates. | Vitor Sessak | 2008-02-15 | 1 | -2/+4 |
* | Split filter graphs out into their own source & header files. | Vitor Sessak | 2008-02-15 | 1 | -20/+0 |