|
|
@ -30,8 +30,8 @@ |
|
|
|
#include "libavutil/avutil.h" |
|
|
|
#include "libavutil/avutil.h" |
|
|
|
|
|
|
|
|
|
|
|
#define LIBSWSCALE_VERSION_MAJOR 0 |
|
|
|
#define LIBSWSCALE_VERSION_MAJOR 0 |
|
|
|
#define LIBSWSCALE_VERSION_MINOR 7 |
|
|
|
#define LIBSWSCALE_VERSION_MINOR 8 |
|
|
|
#define LIBSWSCALE_VERSION_MICRO 2 |
|
|
|
#define LIBSWSCALE_VERSION_MICRO 0 |
|
|
|
|
|
|
|
|
|
|
|
#define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \ |
|
|
|
#define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \ |
|
|
|
LIBSWSCALE_VERSION_MINOR, \
|
|
|
|
LIBSWSCALE_VERSION_MINOR, \
|
|
|
@ -122,6 +122,18 @@ typedef struct { |
|
|
|
|
|
|
|
|
|
|
|
struct SwsContext; |
|
|
|
struct SwsContext; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Returns a positive value if pix_fmt is a supported input format, 0 |
|
|
|
|
|
|
|
* otherwise. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
int sws_isSupportedInput(enum PixelFormat pix_fmt); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Returns a positive value if pix_fmt is a supported output format, 0 |
|
|
|
|
|
|
|
* otherwise. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
int sws_isSupportedOutput(enum PixelFormat pix_fmt); |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Frees the swscaler context swsContext. |
|
|
|
* Frees the swscaler context swsContext. |
|
|
|
* If swsContext is NULL, then does nothing. |
|
|
|
* If swsContext is NULL, then does nothing. |
|
|
|