You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
imgconvert: Add the proper API guards to a deprecated function
This commit is contained in:
@@ -33,12 +33,14 @@
|
|||||||
#include "libavutil/internal.h"
|
#include "libavutil/internal.h"
|
||||||
#include "libavutil/imgutils.h"
|
#include "libavutil/imgutils.h"
|
||||||
|
|
||||||
|
#if FF_API_GETCHROMA
|
||||||
void avcodec_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
|
void avcodec_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
|
||||||
{
|
{
|
||||||
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(pix_fmt);
|
||||||
*h_shift = desc->log2_chroma_w;
|
*h_shift = desc->log2_chroma_w;
|
||||||
*v_shift = desc->log2_chroma_h;
|
*v_shift = desc->log2_chroma_h;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static int is_gray(const AVPixFmtDescriptor *desc)
|
static int is_gray(const AVPixFmtDescriptor *desc)
|
||||||
{
|
{
|
||||||
|
@@ -48,6 +48,9 @@
|
|||||||
* the public API and may change, break or disappear at any time.
|
* the public API and may change, break or disappear at any time.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef FF_API_GETCHROMA
|
||||||
|
#define FF_API_GETCHROMA (LIBAVCODEC_VERSION_MAJOR < 58)
|
||||||
|
#endif
|
||||||
#ifndef FF_API_MISSING_SAMPLE
|
#ifndef FF_API_MISSING_SAMPLE
|
||||||
#define FF_API_MISSING_SAMPLE (LIBAVCODEC_VERSION_MAJOR < 58)
|
#define FF_API_MISSING_SAMPLE (LIBAVCODEC_VERSION_MAJOR < 58)
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user