summaryrefslogtreecommitdiffstats
path: root/video/mp_image.c
Commit message (Expand)AuthorAgeFilesLines
* mp_image: fix vf_vdpaupp referenceswm42015-07-081-2/+0
* video: replace our own refcounting with libavutil'swm42015-07-051-137/+80
* mp_image: make image writeable before overwriting palettewm42015-07-051-2/+4
* mp_image: remove some unused interlacing flagswm42015-04-231-2/+1
* Update license headersMarcin Kurczewski2015-04-131-5/+4
* mp_image: remove redundant flags fieldwm42015-04-101-4/+3
* mp_image: remove redundant chroma_x/y_shift fieldswm42015-04-101-2/+0
* mp_image: remove redundant plane_w/h fieldswm42015-04-101-11/+21
* mp_image: fix buildwm42015-04-091-2/+0
* video: move colorspace overrides to vf_format, simplifywm42015-03-311-5/+9
* mp_image: reject 0-sized imageswm42015-03-231-2/+1
* mp_image: do not assume trailing stride padding existswm42015-03-201-4/+4
* video: uninline memcpy_pic functionswm42015-03-201-1/+47
* mp_image: remove unneeded thingswm42015-03-201-33/+16
* Remove some FFmpeg/Libav compatibility hackswm42015-03-031-5/+0
* Revert "Revert recent vo_opengl related commits"Niklas Haas2015-02-281-1/+10
* Revert recent vo_opengl related commitswm42015-02-281-10/+1
* video: fix typowm42015-02-281-1/+1
* csputils: add missing gamma supportNiklas Haas2015-02-281-1/+10
* vo_opengl: change the way unaligned chroma size is handledwm42015-01-271-1/+1
* vo: simplify VOs by adding generic screenshot supportwm42015-01-241-0/+3
* video: handle hwdec screenshots differentlywm42015-01-221-0/+1
* mp_image: reject invalid display aspect ratiowm42015-01-131-1/+1
* mp_image: copy missing attributesJames Ross-Gowan2015-01-071-0/+2
* mp_image: check for malloc failurewm42014-12-131-0/+2
* video: remove things forgotten in previous commitwm42014-12-031-10/+0
* mp_image: slightly better image params verbose infowm42014-11-121-1/+6
* video: move formatting of image parameters to separate functionwm42014-11-121-0/+21
* mp_image: check memory allocationwm42014-11-081-0/+4
* video: refuse to allocate image data for hwaccel formatswm42014-11-051-1/+1
* video: fix some vo_direct3d crashes due to FFmpeg nonsensewm42014-09-211-1/+2
* video: initial Matroska 3D supportwm42014-08-301-1/+5
* video: Include better heuristics for guessing primariesNiklas Haas2014-06-221-4/+5
* video: Better support for XYZ inputNiklas Haas2014-06-221-1/+4
* video: Support BT.2020 constant luminance systemNiklas Haas2014-06-221-1/+3
* video: Add support for non-BT.709 primariesNiklas Haas2014-06-221-0/+29
* video: Add BT.2020-NCL colorspace and transfer functionNiklas Haas2014-06-221-0/+1
* video: correct spelling: mp_image_params_equals -> mp_image_params_equalwm42014-06-171-2/+2
* video: remove redundant functionwm42014-06-171-6/+0
* video: check image parameterswm42014-06-171-4/+31
* video: introduce failure path for image allocationswm42014-06-171-9/+29
* video: fix screenshots with anamorphic videowm42014-05-021-2/+2
* video: remove redundant mp_image display_w/_h memberswm42014-04-291-14/+4
* mp_image: add rotation parameterwm42014-04-211-1/+2
* video: make mp_image use mp_image_params directlywm42014-04-211-41/+22
* video: remove use of deprecated AVFrame fields on Libavwm42014-04-151-4/+0
* mp_image: add missing field to mp_image_params_equals()wm42014-03-281-0/+1
* video: change image format from unsigned int to int in some placeswm42014-03-171-2/+2
* vd_lavc: remove compatibility crapwm42014-03-161-4/+0
* mp_image: reject too large image sizeswm42014-01-291-0/+4
* mp_image: deal with FFmpeg PSEUDOPAL braindeathwm42013-12-011-3/+3
* build: make pthreads mandatorywm42013-11-281-6/+1
* mp_image: add helper for copying image attributeswm42013-11-031-0/+22
* talloc: change talloc destructor signaturewm42013-10-131-4/+2
* gl_video: handle non-mod-2 4:2:0 YUV video correctlywm42013-08-061-0/+4
* mp_image: make reference counting thread-safewm42013-07-281-3/+27
* mp_image: pass through colorspace info to libavfilterwm42013-07-281-0/+8
* video: support setting libswscale chroma positionwm42013-07-251-1/+3
* mp_image: create AVBuffers for all planes when converting to AVFramewm42013-07-241-1/+9
* img_format: add a mask for color classwm42013-07-181-2/+1
* mp_image: one utility function to set image parameterswm42013-07-181-0/+11
* sws_utils: refactor swscale wrapper codewm42013-07-181-13/+9
* video: redo how colorspaces are handledwm42013-07-161-0/+2
* mp_image: explicitly forbid using RGB colorspace with YUV formatswm42013-07-151-0/+9
* mp_image: refactor colorspace guessing/fallbackwm42013-07-151-9/+44
* csputils.h: don't recursively include libavcodec headerwm42013-06-281-0/+1
* vo_opengl: handle chroma locationwm42013-06-281-0/+1
* video: add a new method to configure filters and VOswm42013-06-281-3/+2
* mp_image: copy palette only if allocatedwm42013-06-281-1/+2
* mp_image: align image allocation heightwm42013-05-171-1/+2
* mp_image: provide function to convert mp_image to AVFramewm42013-04-211-0/+50
* video: use new method to get QP tablewm42013-03-151-5/+9
* video: make use of libavcodec refcountingwm42013-03-131-0/+28
* video: prepare for libavcodec refcountingwm42013-03-131-15/+38
* vf_flip: move flipping code to mp_image.cwm42013-03-011-0/+8
* mp_image: remove mp_image.bppwm42013-01-131-1/+0
* vf_expand: support more image formatswm42013-01-131-40/+38
* mp_image: add mp_image_crop()wm42013-01-131-0/+22
* video: remove img_format compat hackswm42013-01-131-11/+7
* video: cleanup: move and rename vf_mpi_clear and vf_clone_attributeswm42013-01-131-6/+70
* mp_image: change how palette is handledwm42013-01-131-3/+3
* mp_image: simplify image allocationwm42013-01-131-85/+42
* video: use libavutil pixel format descriptorswm42013-01-131-128/+21
* video: remove things related to old DR codewm42013-01-131-19/+19
* mp_image: require using mp_image_set_size() for setting w/hwm42013-01-131-2/+17
* mp_image: refcounting helperswm42013-01-131-18/+220
* video: add support for 12 and 14 bit YUV pixel formatsStephen Hutchinson2012-12-031-0/+12
* mp_image: make alloc_mpi() always allocate with aligned stridewm42012-11-221-17/+3
* draw_bmp: add RGB rendering to fix image quality issueswm42012-11-221-0/+4
* video: add IMGFMT_Y16/PIX_FMT_GRAY16wm42012-11-141-0/+2
* Rename directories, move files (step 2 of 2)wm42012-11-121-4/+4
* Rename directories, move files (step 1 of 2) (does not compile)wm42012-11-121-0/+280