summaryrefslogtreecommitdiffstats
path: root/fmt-conversion.c
Commit message (Collapse)AuthorAgeFilesLines
* libmpcodecs: add support for 422P9mplayer-svn2012-08-031-0/+2
| | | | | | | For some reason only 9-bit 422 wasn't added before. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34524 b3059339-0415-0410-9bf9-f77b7e298cf2 Author: reimar
* libmpcodecs: rename IMGFMT_GBR24P to IMGFMT_GBRPwm42012-03-251-1/+1
| | | | This is more in line with the ffmpeg/libav names.
* libmpcodecs: support planar GBR24 decodingcehoyos2012-03-251-0/+1
| | | | | | | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@34245 b3059339-0415-0410-9bf9-f77b7e298cf2 Note: ffmpeg first introduced PIX_FMT_GBR24P, which was used in this commit. Later, it was renamed to PIX_FMT_GBRP in ffmpeg and libav. This was updated in revision 34492 in mplayer, but the mplayer specific names (such as IMGFMT_GBR24) were left unchanged.
* configure, build: require at least Libav 0.7Uoti Urpala2011-12-221-8/+0
| | | | | | | | | | | | | | | | Require versions of the Libav libraries corresponding to Libav release 0.7. These are: libavutil 51.7.0 libavcodec 53.5.0 libavformat 53.2.0 libswscale 2.0.0 libpostproc 52.0.0 Also disable the fallback to simple header check if these libraries could not be found with pkg-config; now compiling without pkg-config support for these always requires explicitly setting --enable-libav and any needed compiler/linker flags. The simple check would have let compilation proceed even if a version mismatch was detected.
* video/colorspaces: add new 9/10-bit formats from libavcodecUoti Urpala2011-06-261-0/+14
| | | | | | | Add new internal 9/10-bit IMGFMT values and mappings to the corresponding libav* PIX_FMT_* values. Partially based on a patch from Arne Bochem <arneb.mp@ccan.de>.
* fmt-conversion.c: print name of any unrecognized pixfmtUoti Urpala2011-06-261-3/+10
| | | | | Change the error message about unrecognized pixfmt values to include the symbolic name of the pixfmt (available from libavutil).
* Add support for 12-bit color mode on framebuffer devices.cehoyos2010-05-061-0/+4
| | | | | | | Patch Janusz Krzysztofik, jkrzyszt A tis icnet pl git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31139 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add big- and little-endian variants of the 15 and 16 bit RGB/BGR formats.reimar2010-01-171-4/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30353 b3059339-0415-0410-9bf9-f77b7e298cf2
* More format support in fmt-conversion.c: split RGB32 and BGR32reimar2010-01-171-2/+4
| | | | | | | into ARGB, BGRA, ABGR, RGBA. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30351 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add support for YUV format with alpha and fix the codecs.conf entry for vp6areimar2009-12-311-0/+3
| | | | | | | | to use it. Fixes playback of samples in http://samples.mplayerhq.hu/FLV/flash_with_alpha/ git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30157 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add support for 16-bit per component YUV formats.reimar2009-12-311-0/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30152 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add support for 440p colorspace.reimar2009-12-301-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30140 b3059339-0415-0410-9bf9-f77b7e298cf2
* Support VDPAU hardware accelerated decoding of MPEG-4 ASP on capablecehoyos2009-11-101-0/+1
| | | | | | | | | hardware. Original patch by NVIDIA corporation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29885 b3059339-0415-0410-9bf9-f77b7e298cf2
* Map IMGFMT_RGB48xE to PIX_FMT_RGB48xE.cehoyos2009-08-111-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29487 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l, add forgotten BGR15 format to fmt-conversion.c tablereimar2009-03-311-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29117 b3059339-0415-0410-9bf9-f77b7e298cf2
* Re-add accidentally discarded comment about YUVJ format.reimar2009-02-191-2/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28666 b3059339-0415-0410-9bf9-f77b7e298cf2
* Create a fmt-conversion.c file so fmt-conversion.h can be included by ↵reimar2009-02-141-0/+95
multiple files. Also restructure the code so it provides a pixfmt2imgfmt function, too. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28561 b3059339-0415-0410-9bf9-f77b7e298cf2