FFmpeg
|
#include <inttypes.h>
#include <string.h>
#include <math.h>
#include <stdio.h>
#include "config.h"
#include "swscale.h"
#include "swscale_internal.h"
#include "rgb2rgb.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/avutil.h"
#include "libavutil/mathematics.h"
#include "libavutil/mem_internal.h"
#include "libavutil/bswap.h"
#include "libavutil/pixdesc.h"
#include "libavutil/avassert.h"
#include "libavutil/avconfig.h"
#include "bayer_template.c"
Go to the source code of this file.
Macros | |
#define | output_pixel(p, v) (*p) = (v) |
#define | BAYER_GBRG |
#define | BAYER_8 |
#define | BAYER_RENAME(x) bayer_gbrg8_to_##x |
#define | BAYER_GBRG |
#define | BAYER_16LE |
#define | BAYER_RENAME(x) bayer_gbrg16le_to_##x |
#define | BAYER_GBRG |
#define | BAYER_16BE |
#define | BAYER_RENAME(x) bayer_gbrg16be_to_##x |
#define | BAYER_GRBG |
#define | BAYER_8 |
#define | BAYER_RENAME(x) bayer_grbg8_to_##x |
#define | BAYER_GRBG |
#define | BAYER_16LE |
#define | BAYER_RENAME(x) bayer_grbg16le_to_##x |
#define | BAYER_GRBG |
#define | BAYER_16BE |
#define | BAYER_RENAME(x) bayer_grbg16be_to_##x |
#define | BAYER_BGGR |
#define | BAYER_8 |
#define | BAYER_RENAME(x) bayer_bggr8_to_##x |
#define | BAYER_BGGR |
#define | BAYER_16LE |
#define | BAYER_RENAME(x) bayer_bggr16le_to_##x |
#define | BAYER_BGGR |
#define | BAYER_16BE |
#define | BAYER_RENAME(x) bayer_bggr16be_to_##x |
#define | BAYER_RGGB |
#define | BAYER_8 |
#define | BAYER_RENAME(x) bayer_rggb8_to_##x |
#define | BAYER_RGGB |
#define | BAYER_16LE |
#define | BAYER_RENAME(x) bayer_rggb16le_to_##x |
#define | BAYER_RGGB |
#define | BAYER_16BE |
#define | BAYER_RENAME(x) bayer_rggb16be_to_##x |
#define | CASE(pixfmt, prefix) |
#define | CASE(pixfmt, prefix) |
#define | CASE(pixfmt, prefix) |
#define | isRGBA32(x) |
#define | isRGBA64(x) |
#define | isRGB48(x) |
#define | isAYUV(x) |
#define | isX2RGB(x) |
#define | IS_NOT_NE(bpp, desc) |
#define | CONV_IS(src, dst) (srcFormat == AV_PIX_FMT_##src && dstFormat == AV_PIX_FMT_##dst) |
#define | DITHER_COPY(dst, dstStride, src, srcStride, bswap, dbswap) |
#define | COPY816(w) |
#define | FAST_COPY_UP(shift) |
#define | COPY_UP(r, w) |
#define | IS_DIFFERENT_ENDIANESS(src_fmt, dst_fmt, pix_fmt) |
#define | isByteRGB(f) |
#define | isPlanarGray(x) (isGray(x) && (x) != AV_PIX_FMT_YA8 && (x) != AV_PIX_FMT_YA16LE && (x) != AV_PIX_FMT_YA16BE) |
Typedefs | |
typedef void(* | rgbConvFn) (const uint8_t *, uint8_t *, int) |
Functions | |
static void | fillPlane (uint8_t *plane, int stride, int width, int height, int y, uint8_t val) |
void | ff_copyPlane (const uint8_t *src, int srcStride, int srcSliceY, int srcSliceH, int width, uint8_t *dst, int dstStride) |
static int | planarToNv12Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static int | nv12ToPlanarWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static int | planarToNv24Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static int | nv24ToPlanarWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static void | nv24_to_yuv420p_chroma (uint8_t *dst1, int dstStride1, uint8_t *dst2, int dstStride2, const uint8_t *src, int srcStride, int w, int h) |
static int | nv24ToYuv420Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static int | planarToP01xWrapper (SwsInternal *c, const uint8_t *const src8[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam8[], const int dstStride[]) |
static int | planar8ToP01xleWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam8[], const int dstStride[]) |
static int | planarToYuy2Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static int | planarToUyvyWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static int | yuv422pToYuy2Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static int | yuv422pToUyvyWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static int | yuyvToYuv420Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static int | yuyvToYuv422Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static int | uyvyToYuv420Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static int | uyvyToYuv422Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dstParam[], const int dstStride[]) |
static void | gray8aToPacked32 (const uint8_t *src, uint8_t *dst, int num_pixels, const uint8_t *palette) |
static void | gray8aToPacked32_1 (const uint8_t *src, uint8_t *dst, int num_pixels, const uint8_t *palette) |
static void | gray8aToPacked24 (const uint8_t *src, uint8_t *dst, int num_pixels, const uint8_t *palette) |
static int | bswap_16bpc (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | bswap_32bpc (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | palToRgbWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static void | packed16togbra16 (const uint8_t *src, int srcStride, uint16_t *dst[], const int dstStride[], int srcSliceH, int src_alpha, int swap, int shift, int width) |
static void | packed30togbra10 (const uint8_t *src, int srcStride, uint16_t *dst[], const int dstStride[], int srcSliceH, int swap, int bpc, int width) |
static int | Rgb16ToPlanarRgb16Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static void | gbr16ptopacked16 (const uint16_t *src[], const int srcStride[], uint8_t *dst, int dstStride, int srcSliceH, int alpha, int swap, int bpp, int width) |
static void | gbr16ptopacked30 (const uint16_t *src[], const int srcStride[], uint8_t *dst, int dstStride, int srcSliceH, int swap, int bpp, int width) |
static int | planarRgb16ToRgb16Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static void | gbr24ptopacked24 (const uint8_t *src[], const int srcStride[], uint8_t *dst, int dstStride, int srcSliceH, int width) |
static void | gbr24ptopacked32 (const uint8_t *src[], const int srcStride[], uint8_t *dst, int dstStride, int srcSliceH, int alpha_first, int width) |
static void | gbraptopacked32 (const uint8_t *src[], const int srcStride[], uint8_t *dst, int dstStride, int srcSliceH, int alpha_first, int width) |
static int | planarRgbaToRgbWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | planarRgbToRgbWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | planarRgbToplanarRgbWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static void | packedtogbr24p (const uint8_t *src, int srcStride, uint8_t *const dst[], const int dstStride[], int srcSliceH, int alpha_first, int inc_size, int width) |
static int | rgbToPlanarRgbWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static void | packed24togbrap (const uint8_t *src, int srcStride, uint8_t *const dst[], const int dstStride[], int srcSliceH, int width) |
static void | packed32togbrap (const uint8_t *src, int srcStride, uint8_t *const dst[], const int dstStride[], int srcSliceH, int alpha_first, int width) |
static int | rgbToPlanarRgbaWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | bayer_to_rgb24_wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | bayer_to_rgb48_wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | bayer_to_yv12_wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static rgbConvFn | findRgbConvFn (SwsInternal *c) |
static int | rgbToRgbWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | bgr24ToYv12Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | yvu9ToYv12Wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | uint_y_to_float_y_wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | float_y_to_uint_y_wrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | packedCopyWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
static int | planarCopyWrapper (SwsInternal *c, const uint8_t *const src[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[]) |
void | ff_get_unscaled_swscale (SwsInternal *c) |
Set c->convert_unscaled to an unscaled converter if one exists for the specific source and destination formats, bit depths, flags, etc. More... | |
void | sws_convertPalette8ToPacked32 (const uint8_t *src, uint8_t *dst, int num_pixels, const uint8_t *palette) |
Convert an 8-bit paletted frame into a frame with a color depth of 32 bits. More... | |
void | sws_convertPalette8ToPacked24 (const uint8_t *src, uint8_t *dst, int num_pixels, const uint8_t *palette) |
Convert an 8-bit paletted frame into a frame with a color depth of 24 bits. More... | |
Variables | |
static const uint8_t | dithers [8][8][8] |
#define output_pixel | ( | p, | |
v | |||
) | (*p) = (v) |
Definition at line 323 of file swscale_unscaled.c.
#define BAYER_GBRG |
Definition at line 1511 of file swscale_unscaled.c.
#define BAYER_8 |
Definition at line 1547 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_gbrg8_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define BAYER_GBRG |
Definition at line 1511 of file swscale_unscaled.c.
#define BAYER_16LE |
Definition at line 1552 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_gbrg16le_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define BAYER_GBRG |
Definition at line 1511 of file swscale_unscaled.c.
#define BAYER_16BE |
Definition at line 1557 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_gbrg16be_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define BAYER_GRBG |
Definition at line 1526 of file swscale_unscaled.c.
#define BAYER_8 |
Definition at line 1547 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_grbg8_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define BAYER_GRBG |
Definition at line 1526 of file swscale_unscaled.c.
#define BAYER_16LE |
Definition at line 1552 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_grbg16le_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define BAYER_GRBG |
Definition at line 1526 of file swscale_unscaled.c.
#define BAYER_16BE |
Definition at line 1557 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_grbg16be_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define BAYER_BGGR |
Definition at line 1541 of file swscale_unscaled.c.
#define BAYER_8 |
Definition at line 1547 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_bggr8_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define BAYER_BGGR |
Definition at line 1541 of file swscale_unscaled.c.
#define BAYER_16LE |
Definition at line 1552 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_bggr16le_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define BAYER_BGGR |
Definition at line 1541 of file swscale_unscaled.c.
#define BAYER_16BE |
Definition at line 1557 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_bggr16be_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define BAYER_RGGB |
Definition at line 1556 of file swscale_unscaled.c.
#define BAYER_8 |
Definition at line 1547 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_rggb8_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define BAYER_RGGB |
Definition at line 1556 of file swscale_unscaled.c.
#define BAYER_16LE |
Definition at line 1552 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_rggb16le_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define BAYER_RGGB |
Definition at line 1556 of file swscale_unscaled.c.
#define BAYER_16BE |
Definition at line 1557 of file swscale_unscaled.c.
#define BAYER_RENAME | ( | x | ) | bayer_rggb16be_to_##x |
Definition at line 1558 of file swscale_unscaled.c.
#define CASE | ( | pixfmt, | |
prefix | |||
) |
#define CASE | ( | pixfmt, | |
prefix | |||
) |
#define CASE | ( | pixfmt, | |
prefix | |||
) |
#define isRGBA32 | ( | x | ) |
Definition at line 1717 of file swscale_unscaled.c.
#define isRGBA64 | ( | x | ) |
Definition at line 1724 of file swscale_unscaled.c.
#define isRGB48 | ( | x | ) |
Definition at line 1731 of file swscale_unscaled.c.
#define isAYUV | ( | x | ) |
Definition at line 1738 of file swscale_unscaled.c.
#define isX2RGB | ( | x | ) |
Definition at line 1745 of file swscale_unscaled.c.
#define IS_NOT_NE | ( | bpp, | |
desc | |||
) |
Definition at line 2074 of file swscale_unscaled.c.
#define COPY816 | ( | w | ) |
#define FAST_COPY_UP | ( | shift | ) |
#define IS_DIFFERENT_ENDIANESS | ( | src_fmt, | |
dst_fmt, | |||
pix_fmt | |||
) |
#define isByteRGB | ( | f | ) |
#define isPlanarGray | ( | x | ) | (isGray(x) && (x) != AV_PIX_FMT_YA8 && (x) != AV_PIX_FMT_YA16LE && (x) != AV_PIX_FMT_YA16BE) |
typedef void(* rgbConvFn) (const uint8_t *, uint8_t *, int) |
Definition at line 1751 of file swscale_unscaled.c.
|
static |
Definition at line 114 of file swscale_unscaled.c.
Referenced by bgr24ToYv12Wrapper(), planarCopyWrapper(), planarRgbToplanarRgbWrapper(), uyvyToYuv420Wrapper(), yuyvToYuv420Wrapper(), and yvu9ToYv12Wrapper().
void ff_copyPlane | ( | const uint8_t * | src, |
int | srcStride, | ||
int | srcSliceY, | ||
int | srcSliceH, | ||
int | width, | ||
uint8_t * | dst, | ||
int | dstStride | ||
) |
Definition at line 125 of file swscale_unscaled.c.
Referenced by nv12ToPlanarWrapper(), nv24_to_yuv420p_neon_wrapper(), nv24ToPlanarWrapper(), nv24ToYuv420Wrapper(), planarRgbToplanarRgbWrapper(), planarToNv12Wrapper(), planarToNv24Wrapper(), and yvu9ToYv12Wrapper().
|
static |
Definition at line 142 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 162 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 183 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 203 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 224 of file swscale_unscaled.c.
Referenced by nv24ToYuv420Wrapper().
|
static |
Definition at line 246 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 266 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 326 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 369 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 381 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 393 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 405 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 417 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 434 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 448 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 465 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 479 of file swscale_unscaled.c.
Referenced by palToRgbWrapper().
|
static |
Definition at line 487 of file swscale_unscaled.c.
Referenced by palToRgbWrapper().
|
static |
Definition at line 496 of file swscale_unscaled.c.
Referenced by palToRgbWrapper().
|
static |
Definition at line 510 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 537 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 565 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 611 of file swscale_unscaled.c.
Referenced by Rgb16ToPlanarRgb16Wrapper().
|
static |
Definition at line 745 of file swscale_unscaled.c.
Referenced by Rgb16ToPlanarRgb16Wrapper().
|
static |
Definition at line 816 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 888 of file swscale_unscaled.c.
Referenced by planarRgb16ToRgb16Wrapper().
|
static |
Definition at line 1007 of file swscale_unscaled.c.
Referenced by planarRgb16ToRgb16Wrapper().
|
static |
Definition at line 1042 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 1112 of file swscale_unscaled.c.
Referenced by planarRgbaToRgbWrapper(), and planarRgbToRgbWrapper().
|
static |
Definition at line 1130 of file swscale_unscaled.c.
Referenced by planarRgbToRgbWrapper().
|
static |
Definition at line 1159 of file swscale_unscaled.c.
Referenced by planarRgbaToRgbWrapper().
|
static |
Definition at line 1188 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 1244 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 1300 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 1317 of file swscale_unscaled.c.
Referenced by rgbToPlanarRgbWrapper().
|
static |
Definition at line 1346 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 1391 of file swscale_unscaled.c.
Referenced by rgbToPlanarRgbaWrapper().
|
static |
Definition at line 1418 of file swscale_unscaled.c.
Referenced by rgbToPlanarRgbaWrapper().
|
static |
Definition at line 1454 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 1561 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 1611 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 1661 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 1752 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale(), and rgbToRgbWrapper().
|
static |
Definition at line 1910 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 1971 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 1988 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 2004 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 2024 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 2047 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
|
static |
Definition at line 2134 of file swscale_unscaled.c.
Referenced by ff_get_unscaled_swscale().
void ff_get_unscaled_swscale | ( | SwsInternal * | c | ) |
Set c->convert_unscaled to an unscaled converter if one exists for the specific source and destination formats, bit depths, flags, etc.
Definition at line 2307 of file swscale_unscaled.c.
Referenced by sws_init_single_context().
|
static |
Definition at line 38 of file swscale_unscaled.c.
Referenced by ff_gradfun_filter_line_c().