summaryrefslogtreecommitdiffstats
path: root/video/filter
Commit message (Expand)AuthorAgeFilesLines
* options: use m_config for options instead of m_structwm42013-07-2114-252/+179
* vf: remove unnecessary indirectionwm42013-07-212-26/+5
* video: remove fullscreen flags chaoswm42013-07-181-2/+1
* sws_utils: don't recursively include libswscale headerwm42013-07-181-0/+2
* vf_scale: use new swscale wrapperwm42013-07-181-157/+60
* vf: make sure less important image params are set before/after filterswm42013-07-181-14/+21
* vf_scale: remove rounding of sizes to 2 with 4:2:0wm42013-07-181-11/+0
* vf_scale: try to support all pixel formatswm42013-07-181-1/+25
* vf_scale: don't byte-swap palette on big endian architectureswm42013-07-181-8/+0
* vf_scale: uncrustifywm42013-07-181-186/+207
* video: redo how colorspaces are handledwm42013-07-163-57/+41
* vf: add vf_control wrapperwm42013-07-152-0/+6
* build: change vf_dlopen testwm42013-07-121-1/+1
* configure: add libdl detection to ladspa, vf_dlopenRudolf Polzer2013-07-091-0/+2
* vo_opengl: handle chroma locationwm42013-06-281-0/+1
* video: add a new method to configure filters and VOswm42013-06-285-68/+95
* vf_rotate: fix params >= 4wm42013-06-281-0/+2
* fix compile, sorryRudolf Polzer2013-06-161-0/+1
* vf_dlopen filters: add an "ildetect" filter that detects interlacingRudolf Polzer2013-06-161-4/+21
* vf_delogo: copy in non-direct case, fix double-freewm42013-05-261-9/+1
* vf_lavfi: allow setting avoptswm42013-05-261-0/+9
* m_option, vf: add label supportwm42013-05-232-1/+18
* dec_video: get rid of two global variableswm42013-05-211-2/+0
* vf_lavfi: remove redundant statementswm42013-05-211-4/+0
* video/filter: fix option parser memory leakwm42013-05-186-16/+3
* Fix some cppcheck / scan-build warningswm42013-05-062-2/+2
* vf_yadif: actually set PTS for output frameswm42013-05-061-0/+1
* vf_rotate: fix for some obscure pixel formatswm42013-05-031-7/+6
* video: add XYZ supportwm42013-05-011-0/+1
* vf_lavfi: move compat crap to the start of the filewm42013-04-261-18/+18
* vf_lavfi: silence stupid deprecation warningwm42013-04-261-2/+12
* vf_lavfi: recreate filter graph on seekwm42013-04-251-14/+41
* vf_lavfi: add libavfilter bridgewm42013-04-212-0/+315
* vf_divtc, vf_phase: Fix handling of subsampled formatsMartin Herkt2013-04-102-3/+4
* vf_flip: move flipping code to mp_image.cwm42013-03-011-4/+1
* vf_vo: remove pointless NULL checkswm42013-03-011-4/+0
* core: simplify OSD capability handling, remove VFCAP_OSDwm42013-03-015-13/+6
* video/out: remove video mode switching (--vm)wm42013-02-261-2/+1
* vf_yadif: remove dead codewm42013-02-261-2/+0
* demux_mf: support .xbmwm42013-02-241-0/+1
* vf_yadif: switch to option parser, allow disabling by defaultwm42013-02-231-7/+21
* vf_scale: remove video dimension presets ("presize" suboption)wm42013-02-231-41/+0
* vf_stereo3d: get rid of m_obj_presets_t usagewm42013-02-231-49/+3
* core: redo how codecs are mapped, remove codecs.confwm42013-02-101-1/+0
* vf_stereo3d: add support for green-magenta and yellow-blue duboiscehoyos2013-02-031-1/+11
* vf_dlopen: fix external pixel format nameswm42013-02-031-7/+35
* screenshot: minor simplification, prefer VF over VOwm42013-01-302-13/+0
* vf_scale: fix warningwm42013-01-271-1/+0
* video: move handling of -x/-y/-xy options to VOwm42013-01-239-26/+14
* video: reset filters on seekwm42013-01-204-0/+31
* vf_format: fix forcing output formatwm42013-01-171-1/+11
* video: print filter chain in verbose modewm42013-01-142-3/+34
* vf_sub: allow more formats, simplify codewm42013-01-131-82/+15
* vf_expand: support more image formatswm42013-01-131-68/+33
* vf_rotate: support more image formatswm42013-01-131-34/+25
* vf_softpulldown: reject unsupported image formats, fix code duplicationwm42013-01-131-47/+24
* vf_yadif: Y8 is not supportedwm42013-01-131-1/+0
* vf_swapuv: support more image formatswm42013-01-131-12/+8
* vf_pullup: remove check for MP_IMGFLAG_PLANARwm42013-01-131-4/+0
* vf_phase: reject unsupported image formatswm42013-01-131-21/+20
* vf_mirror: rewritewm42013-01-131-65/+52
* vf_gradfun: does not work with NV pixel formatswm42013-01-131-2/+0
* vf_flip: make it work with more image formatswm42013-01-131-15/+15
* vf_divtc: reduce code duplicationwm42013-01-131-14/+7
* vf_crop: make it work with more image formatswm42013-01-131-39/+20
* vf: add vf_rescale_dsize()wm42013-01-132-0/+18
* sub: do not copy the target image if there is no OSD/subswm42013-01-131-5/+3
* video: remove img_format compat hackswm42013-01-132-2/+2
* video: decouple internal pixel formats from FourCCswm42013-01-1321-127/+69
* video: cleanup: move and rename vf_mpi_clear and vf_clone_attributeswm42013-01-133-82/+6
* mp_image: change how palette is handledwm42013-01-136-56/+5
* vf_screenshot: simplifywm42013-01-132-52/+20
* video: remove things related to old DR codewm42013-01-136-31/+18
* video/filter: change filter API, use refcounting, remove filter DRwm42013-01-1331-1122/+519
* mp_image: require using mp_image_set_size() for setting w/hwm42013-01-131-5/+3
* video: make vdpau hardware decoding not use DR code pathwm42013-01-132-11/+3
* video: remove slice based filtering and video outputwm42013-01-1313-301/+9
* video: make vdpau hardware decoding not use slices code pathwm42013-01-132-3/+3
* video/out: replace VOCTRL_QUERY_FORMAT with vo_driver.query_formatwm42013-01-131-1/+1
* video/out: make draw_image mandatory, remove VOCTRL_DRAW_IMAGEwm42013-01-131-12/+1
* configure: remove check for .align semanticswm42013-01-134-8/+8
* vf_scale: prefer 420P10 -> YV12 instead of 444Pwm42012-12-281-0/+1
* vf_scale: support more pixel formatsRudolf Polzer2012-12-281-0/+4
* options: move -ass-bottom-margin/-ass-top-margin options to vf_subwm42012-12-121-10/+15
* vf_sub: fix aspect ratio when using marginswm42012-12-121-3/+3
* video: add support for 12 and 14 bit YUV pixel formatsStephen Hutchinson2012-12-031-0/+12
* sws_utils: remove unused helperwm42012-11-241-1/+5
* screenshot: add subs even with vf_screenshotwm42012-11-211-0/+1
* video: fix bogus uses of mp_image.w/widthwm42012-11-211-2/+4
* vf_softpulldown: fix possible regressionwm42012-11-201-1/+2
* video/filter: rename vf_eq2 to vf_eqwm42012-11-162-4/+4
* options, vo_x11: remove -zoom option, make it defaultwm42012-11-162-29/+2
* vf_dlopen: fix a typo in zeroing memory (thanks, pigoz)Rudolf Polzer2012-11-131-1/+1
* Rename directories, move files (step 2 of 2)wm42012-11-1232-161/+162
* Rename directories, move files (step 1 of 2) (does not compile)wm42012-11-1234-0/+11133