|
|
|
@ -37,6 +37,7 @@ |
|
|
|
|
#include "libavutil/colorspace.h" |
|
|
|
|
#include "libavutil/common.h" |
|
|
|
|
#include "libavutil/pixdesc.h" |
|
|
|
|
#include "libavutil/internal.h" |
|
|
|
|
#include "libavutil/imgutils.h" |
|
|
|
|
|
|
|
|
|
void avcodec_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift) |
|
|
|
@ -253,6 +254,8 @@ static inline int is_yuv_planar(const AVPixFmtDescriptor *desc) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#if FF_API_AVPICTURE |
|
|
|
|
FF_DISABLE_DEPRECATION_WARNINGS |
|
|
|
|
|
|
|
|
|
int av_picture_crop(AVPicture *dst, const AVPicture *src, |
|
|
|
|
enum AVPixelFormat pix_fmt, int top_band, int left_band) |
|
|
|
|
{ |
|
|
|
@ -336,4 +339,6 @@ int av_picture_pad(AVPicture *dst, const AVPicture *src, int height, int width, |
|
|
|
|
} |
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
FF_DISABLE_DEPRECATION_WARNINGS |
|
|
|
|
#endif /* FF_API_AVPICTURE */ |
|
|
|
|