summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* vsrc_movie: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vsrc_nullsrc: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vsrc_color: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* split: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_volume: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_join: switch to an AVOptions-based system.Anton Khirnov2013-04-09
| | | | | | Change the mappings separator from comma to '|' to avoid excessive escaping, since comma is already used for separating filters in the filtergraph description.
* af_channelsplit: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_channelmap: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_asyncts: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_amix: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_yadif: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_unsharp: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_transpose: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_settb: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_setpts: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_select: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_pad: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_overlay: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_lut: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_libopencv: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_hqdn3d: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_gradfun: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_scale: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_frei0r: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_fps: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_fieldorder: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_fade: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_drawtext: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_drawbox: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_delogo: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_cropdetect: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_crop: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_boxblur: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_blackframe: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_aspect: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* vf_(no)format: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_aformat: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* buffersrc: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* af_resample: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* lavfi: switch to an AVOptions-based system.Anton Khirnov2013-04-09
|
* dfa: implement missing TDLT coding methodKostya Shishkov2013-04-09
|
* srtp: Include rtpdec.h for RTP_MAX_PACKET_LENGTHMartin Storsjö2013-04-09
| | | | | | | This was missed from 350ad50b - this fixes building the fate-srtp test. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec: Increase max rtp packet size to 8192Andrew Van Til2013-04-09
| | | | | | This fixes connecting to "Ceton InfiniTV4 PCIe & USB". Signed-off-by: Martin Storsjö <martin@martin.st>
* lavf: Use RTP_MAX_PACKET_LENGTH instead of 1500Andrew Van Til2013-04-09
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* h264pred: Add a few missing const declarations for ff_cropTbl derived pointersMartin Storsjö2013-04-08
| | | | | | | | The pointers that get assigned ff_cropTbl were made const in 9e0f14f1, but other variables that transitively are assigned based on these variables were missed. Signed-off-by: Martin Storsjö <martin@martin.st>
* lavc: Move ff_cropTbl and ff_zigzag_direct from dsputil to mathtablesRonald S. Bultje2013-04-08
| | | | | | | | | These are widely used throughout libavcodec, nothing dsputil-specific. Change ff_cropTbl to a statically initialized table, to avoid initializing it with a function call. Signed-off-by: Martin Storsjö <martin@martin.st>
* lavc: Make pointers to ff_cropTbl constMartin Storsjö2013-04-08
| | | | | | There's no point in these pointers not being const. Signed-off-by: Martin Storsjö <martin@martin.st>
* vp3: Embed idct_permutation array directly in VP3DecoderContextRonald S. Bultje2013-04-08
| | | | | | | This makes the vp3 decoder less dependent on dsputil, and will aid in making it (eventually) dsputil-independent. Signed-off-by: Martin Storsjö <martin@martin.st>
* x86: qpel: Move fullpel and l2 functions to a separate fileRonald S. Bultje2013-04-08
| | | | | | | This way, they can be shared between mpeg4qpel and h264qpel without requiring either one to be compiled unconditionally. Signed-off-by: Martin Storsjö <martin@martin.st>
* bfin: Make vp3 functions staticMartin Storsjö2013-04-08
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>