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
2009-09-27simplify format string for writing pix_fmt string.Justin Ruggles
Originally committed as revision 20034 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-25Align pix_fmt list by allowing one more char for the pix_fmt name.Justin Ruggles
Originally committed as revision 20024 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().Lars Täuber
Patch by Lars Täuber <lars <dot> taeuber <at> gmx <dot> net>. Originally committed as revision 19775 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-11Use RGB5x5LE, RGB5x5BE, BGR5x5LE and BGR5x5BE instead of their nativeAlexis Ballier
endian counterparts. Patch by Alexis Ballier, alexis D ballier gmail Originally committed as revision 19626 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-26Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård
Originally committed as revision 19508 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-01Fix argument type mismatches for av_picture_crop and av_picture_fillMåns Rullgård
Originally committed as revision 19314 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Add 420,422 and 444 planar 16bit per component pix formats.Michael Niedermayer
Originally committed as revision 18636 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Remove a useless assignment in img_get_alpha_info() found by CSA.Michael Niedermayer
Originally committed as revision 18582 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Remove redundant assignment in av_picture_copy() found by CSA.Michael Niedermayer
Originally committed as revision 18581 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-17Remove redundant assignment from avcodec_get_pix_fmt_loss() found by CSA.Michael Niedermayer
Originally committed as revision 18564 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-14fix indentationBaptiste Coudurier
Originally committed as revision 18503 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-14avoid strcmp NULL, fix segv on mingwBaptiste Coudurier
Originally committed as revision 18502 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-23Make the pixel formats which were defined as macros:Stefano Sabatini
PIX_FMT_ARGB PIX_FMT_RGBA PIX_FMT_ABGR PIX_FMT_BGRA defined as enum PixelFormat values, and viceversa make: PIX_FMT_RGB32 PIX_FMT_RGB32_1 PIX_FMT_BGR32 PIX_FMT_BGR32_1 defined as macros, also resort accordingly the enum PixelFormat list. Also make avcodec_get_pix_fmt() recognize the "rgb32" and "bgr32" aliases, in order to make ffmpeg pass regressions test. This change breaks ABI backward compatibility. Originally committed as revision 18163 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-23Factorize: use the X_NE() macro in avcodec_get_pix_fmt().Stefano Sabatini
Originally committed as revision 18160 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-23Implement X_NE() macro.Stefano Sabatini
Originally committed as revision 18158 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-22Change the RGB5X5/BGR5X5 pixel format defines so that we have littleStefano Sabatini
endian and big endian variants instead of native-endian ones. This patch breaks API/ABI backward-compatibility. Originally committed as revision 18133 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-22Extend the behavior of avcodec_get_pix_fmt(), if it cannot find aStefano Sabatini
pixel format for the provided name, make it look for the native endian variant of the name. Originally committed as revision 18130 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-22Globally prefer enum PixelFormat over int when it makes sense.Stefano Sabatini
Originally committed as revision 18129 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-21Fix avpicture_get_size for non-paletted formats with a helper paletteReimar Döffinger
to not include the size of that palette. Also clarify its documentation. Originally committed as revision 18106 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-20Do not set linesize for palette data, it does not make sense and createsReimar Döffinger
problems with following patch to fix linesize alignment. Originally committed as revision 18046 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-04Remove old scaler.Michael Niedermayer
Originally committed as revision 17786 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-03Set PixFmtInfo::{x, y}_chroma_shift for VDPAU and VAAPI formats.Gwenole Beauchesne
Originally committed as revision 17766 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-28Fix avpicture_layout to not chroma shift the alpha plane when outputting ↵Cédric Schieli
YUVA420P Originally committed as revision 17654 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-27Add VA API pixel formats.Gwenole Beauchesne
Patch by Gwenole Beauchesne. Originally committed as revision 17634 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-23Approved hunks for VAAPI / our new shiny hwaccel APIMichael Niedermayer
by Gwenole Beauchesne gbeauchesne splitted desktop com Originally committed as revision 17539 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-22Add missing av_cold in static init/close functions.Daniel Verkamp
Patch by Daniel Verkamp daniel at drv dot nu. Originally committed as revision 17526 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-22Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.Peter Ross
Originally committed as revision 17510 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-10Add a default (error) for the switch in case of an unsupported PIX_FMT.Patrik Kullman
Removes warnings about possibly uninitialized variables. Patch by Patrik Kullman %patrik A yes P nu% Originally committed as revision 17130 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-06Ensure that the palette is set in data[1] for all 8bit formats.Michael Niedermayer
Also document it. Originally committed as revision 17018 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-20Add VDPAU hardware accelerated decoding for WMV3 and VC1 which canNVIDIA Corporation
be used by video players. Original patch by NVIDIA corporation. Originally committed as revision 16699 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-19cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun
Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-16Add VDPAU hardware accelerated decoding for MPEG1 and MPEG2 which canNVIDIA Corporation
be used by video players. Original patch by NVIDIA corporation. Originally committed as revision 16628 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-05Add VDPAU hardware accelerated decoding for H264 which can be used byNVIDIA Corporation
video players. Original patch by NVIDIA corporation. Originally committed as revision 16431 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-22Rename libavcodec/i386/ --> libavcodec/x86/.Diego Biurrun
It contains optimizations that are not specific to i386 and libavutil uses this naming scheme already. Originally committed as revision 16270 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-14Prevent shift overflow, patch by Anders Grönberg, galileo.m2 gmail com.Anders Grönberg
Originally committed as revision 16121 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-14Get rid of mmx_t.Aurelien Jacobs
Originally committed as revision 16116 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-30Remove unused variable, patch by Art Clarke, aclarke vlideshow com.Art Clarke
Originally committed as revision 15748 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-30Fix av_picture_copy missing pixels on packed planar AVPictures with odd size.Art Clarke
patch by Art Clarke, aclarke vlideshow com Originally committed as revision 15744 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-27Rename template included sources from .h to _template.c.Diego Pettenò
There are multiple source files that are #include'd rather than compiled, as they are used as template for generation of similar code, like asm-optimised code. Some of these files are right now named with a .h extension, although they are not header in any reasonable sense. Rename them so that instead of being named with .h extension they are named with _template.c as final part. Originally committed as revision 15730 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08avcodec_find_best_pix_fmt() needs a 64bit mask as there are more than 32 ↵Michael Niedermayer
pix_fmts. Originally committed as revision 15271 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-08Remove stuff under #if LIBAVCODEC_VERSION_INT.Michael Niedermayer
Originally committed as revision 15263 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-03Add graceful error handling to avcodec_get_pix_fmt_name() and ↵Peter Ross
avcodec_get_pix_fmt(). Originally committed as revision 14513 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-01memcpy considering output width, not src linesize, fix segv with av_picture_padBaptiste Coudurier
Originally committed as revision 13594 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-27Do not read from prior the array, fix CID 127.Michael Niedermayer
Originally committed as revision 13471 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-06Remove unnecessary parentheses from return calls.Diego Biurrun
Originally committed as revision 13069 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-16Move functions that are only used when libswscale is not compiled in belowDiego Biurrun
the appropriate #ifdef. This avoids a bunch of "defined but not used" warnings when compiling with libswscale enabled. Originally committed as revision 12463 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-10Rename --enable-swscaler --> enable-swscale to be consistent with theDiego Biurrun
directory name and other option names. Also rename variables accordingly. Originally committed as revision 12408 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-15This should not be part of the public APIVitor Sessak
Originally committed as revision 11960 to svn://svn.ffmpeg.org/ffmpeg/trunk