summaryrefslogtreecommitdiff
path: root/libswscale/output.c
Commit message (Collapse)AuthorAge
* swscale: Mark all init functions as av_coldDiego Biurrun2012-07-23
|
* swscale: clip before assigning tables in RGB output functions.Ronald S. Bultje2012-04-14
|
* swscale: fix off-by-one in second coefficient in bilinear filters.Ronald S. Bultje2012-04-14
| | | | | If coefficient A is 12-bits xixed-point number "X", then the other coefficient is (1 << 12) - X, not (1 << 12) - X - 1.
* swscale: handle last pixel if lines have an odd width.Ronald S. Bultje2012-04-13
| | | | Fixes bug 270.
* swscale: handle complete dimensions for monoblack/white.Ronald S. Bultje2012-04-04
| | | | Fixes bug 269.
* swscale: clip unscaled output intermediates.Ronald S. Bultje2012-03-07
| | | | | Fixes bug 240, as well as several integer overflows (visible as glitches) in other scaling output routines, e.g. YUV422.
* swscale: make monowhite/black RGB-independent.Ronald S. Bultje2012-02-16
| | | | | | Disadvantage is that it no longer allows modifying brightness through adjustment of the RGB lookup table. Advantage is that now monowhite/black no longer need to be identified as a RGB format.
* Drop some completely unnecessary av_unused attributes.Diego Biurrun2012-02-13
|
* swscale: move YUV2PACKED16WRAPPER() macro down to where it is used.Ronald S. Bultje2012-02-13
|
* swscale: handle gray16 as a "planar" YUV format (Y-only, of course).Ronald S. Bultje2012-02-13
| | | | | This allows removing any gray16-specific code, which is essentially identical to the per-plane code in yuv2plane*().
* swscale: fix incorrect chroma bias in yuv2rgb48_1_c().Ronald S. Bultje2012-02-13
|
* swscale: fix invalid memory accesses in yuvpacked1() functions.Ronald S. Bultje2012-02-13
|
* swscale: split C output functions into separate file.Ronald S. Bultje2012-02-07
Signed-off-by: Diego Biurrun <diego@biurrun.de>