mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/videotoolbox: don't use av_ prefix for local function
Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
This commit is contained in:
parent
5146916a9c
commit
9a180f60a9
|
@ -1173,7 +1173,7 @@ static enum AVPixelFormat videotoolbox_best_pixel_format(AVCodecContext *avctx)
|
||||||
return AV_PIX_FMT_NV12;
|
return AV_PIX_FMT_NV12;
|
||||||
}
|
}
|
||||||
|
|
||||||
static AVVideotoolboxContext *av_videotoolbox_alloc_context_with_pix_fmt(enum AVPixelFormat pix_fmt,
|
static AVVideotoolboxContext *videotoolbox_alloc_context_with_pix_fmt(enum AVPixelFormat pix_fmt,
|
||||||
bool full_range)
|
bool full_range)
|
||||||
{
|
{
|
||||||
AVVideotoolboxContext *ret = av_mallocz(sizeof(*ret));
|
AVVideotoolboxContext *ret = av_mallocz(sizeof(*ret));
|
||||||
|
@ -1207,7 +1207,7 @@ int ff_videotoolbox_common_init(AVCodecContext *avctx)
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
vtctx->vt_ctx = av_videotoolbox_alloc_context_with_pix_fmt(AV_PIX_FMT_NONE, false);
|
vtctx->vt_ctx = videotoolbox_alloc_context_with_pix_fmt(AV_PIX_FMT_NONE, false);
|
||||||
if (!vtctx->vt_ctx) {
|
if (!vtctx->vt_ctx) {
|
||||||
err = AVERROR(ENOMEM);
|
err = AVERROR(ENOMEM);
|
||||||
goto fail;
|
goto fail;
|
||||||
|
@ -1392,7 +1392,7 @@ const AVHWAccel ff_prores_videotoolbox_hwaccel = {
|
||||||
#if FF_API_VT_HWACCEL_CONTEXT
|
#if FF_API_VT_HWACCEL_CONTEXT
|
||||||
AVVideotoolboxContext *av_videotoolbox_alloc_context(void)
|
AVVideotoolboxContext *av_videotoolbox_alloc_context(void)
|
||||||
{
|
{
|
||||||
return av_videotoolbox_alloc_context_with_pix_fmt(AV_PIX_FMT_NONE, false);
|
return videotoolbox_alloc_context_with_pix_fmt(AV_PIX_FMT_NONE, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
int av_videotoolbox_default_init(AVCodecContext *avctx)
|
int av_videotoolbox_default_init(AVCodecContext *avctx)
|
||||||
|
@ -1404,7 +1404,7 @@ int av_videotoolbox_default_init2(AVCodecContext *avctx, AVVideotoolboxContext *
|
||||||
{
|
{
|
||||||
enum AVPixelFormat pix_fmt = videotoolbox_best_pixel_format(avctx);
|
enum AVPixelFormat pix_fmt = videotoolbox_best_pixel_format(avctx);
|
||||||
bool full_range = avctx->color_range == AVCOL_RANGE_JPEG;
|
bool full_range = avctx->color_range == AVCOL_RANGE_JPEG;
|
||||||
avctx->hwaccel_context = vtctx ?: av_videotoolbox_alloc_context_with_pix_fmt(pix_fmt, full_range);
|
avctx->hwaccel_context = vtctx ?: videotoolbox_alloc_context_with_pix_fmt(pix_fmt, full_range);
|
||||||
if (!avctx->hwaccel_context)
|
if (!avctx->hwaccel_context)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue