Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-04-15Add PIX_FMT_Y400A, 8bit gray, 8bit alphaAndreas Ă–man
Originally committed as revision 22881 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-05Add initial support for 12-bit color mode.Janusz Krzysztofik
Patch by Janusz Krzysztofik jkrzyszt tis icnet pl Original thread: Subject: [FFmpeg-devel] [PATCH v2] Add initial support for 12-bit color mode. Date: Mon, 1 Mar 2010 02:05:07 +0100 Originally committed as revision 22220 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-04Declare the PIX_FMT_GRAY8 pixel format as a paletted format. This isStefano Sabatini
consistent with the allocation currently done for PIX_FMT_GRAY8 pictures. No significant slow-downs have been measured. See the thread: Subject: [FFmpeg-devel] [PATCH] Is gray8 a paletted format? Date: Sun, 15 Nov 2009 23:36:03 +0100 Originally committed as revision 22191 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-16Move read_line() and write_line() definition from pixdesc.h toStefano Sabatini
pixdesc.c, which are now not anymore marked as static inline. Fix the inclusion of the private header intreadwrite.h in the public header pixdesc.h. Originally committed as revision 21854 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-30Implement av_get_pix_fmt(), and deprecate avcodec_get_pix_fmt().Stefano Sabatini
Originally committed as revision 21545 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-20H264 DXVA2 implementationLaurent Aimar
It allows VLD H264 decoding using DXVA2 (GPU assisted decoding API under VISTA and Windows 7). It is implemented by using AVHWAccel API. It has been tested successfully for some time in VLC using an nvidia card on Windows 7. To compile it, you need to have the system header dxva2api.h (either from microsoft or using http://downloads.videolan.org/pub/videolan/testing/contrib/dxva2api.h) The generated libavcodec.dll does not depend directly on any new lib as the necessary objects are given by the application using FFmpeg. Originally committed as revision 21353 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-26Make av_pix_fmt_descriptors use the same pixel format names as definedStefano Sabatini
in libavcodec/imgconvert.c. Avoid to break compatility when making the functions dealing with pixel format names in imgconvert.c use the names defined in pixdescs. Originally committed as revision 20624 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-18Rename AVPixFmtDescriptor.nb_channels to nb_components, the new nameStefano Sabatini
is more clear and lexically more consistent with API and documentation. Originally committed as revision 20545 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-11Add PIX_FMT_VDPAU_MPEG4 to pixdesc.c.Carl Eugen Hoyos
Originally committed as revision 20509 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-06Add pixel format descriptors for the HW-accelerated formats.Stefano Sabatini
This completes the list of all descriptors in av_pix_fmt_descriptors. Originally committed as revision 20467 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-02Add PIX_FMT_PAL flag to BGR8, BGR4_BYTE, RGB8, and RGB4_BYTE formats.Stefano Sabatini
Originally committed as revision 20434 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-27Move pixdesc.{h,c} from libavcodec to libavutil.Stefano Sabatini
This way pixdescs can be used without requiring a dependency on libavcodec. Originally committed as revision 20389 to svn://svn.ffmpeg.org/ffmpeg/trunk