mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-10 17:39:56 +00:00
avutil/hwcontext_videotoolbox: add frame hwctx to specify color range
VideoToolbox use different identifiers for the same pixel format with different color range, like kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange kCVPixelFormatType_420YpCbCr8BiPlanarFullRange. Before the patch, vt_pool_alloc() always use limited range, and it will fail for pixel format AV_PIX_FMT_BGRA since there is no limited range kCVPixelFormatType_32BGRA. Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
This commit is contained in:
parent
0f824d792d
commit
5d255ba95a
@ -144,6 +144,25 @@ enum AVPixelFormat av_map_videotoolbox_format_to_pixfmt(uint32_t cv_fmt)
|
|||||||
return AV_PIX_FMT_NONE;
|
return AV_PIX_FMT_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static uint32_t vt_format_from_pixfmt(enum AVPixelFormat pix_fmt,
|
||||||
|
enum AVColorRange range)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < FF_ARRAY_ELEMS(cv_pix_fmts); i++) {
|
||||||
|
if (cv_pix_fmts[i].pix_fmt == pix_fmt) {
|
||||||
|
int full_range = (range == AVCOL_RANGE_JPEG);
|
||||||
|
|
||||||
|
// Don't care if unspecified
|
||||||
|
if (range == AVCOL_RANGE_UNSPECIFIED)
|
||||||
|
return cv_pix_fmts[i].cv_fmt;
|
||||||
|
|
||||||
|
if (cv_pix_fmts[i].full_range == full_range)
|
||||||
|
return cv_pix_fmts[i].cv_fmt;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
uint32_t av_map_videotoolbox_format_from_pixfmt(enum AVPixelFormat pix_fmt)
|
uint32_t av_map_videotoolbox_format_from_pixfmt(enum AVPixelFormat pix_fmt)
|
||||||
{
|
{
|
||||||
return av_map_videotoolbox_format_from_pixfmt2(pix_fmt, false);
|
return av_map_videotoolbox_format_from_pixfmt2(pix_fmt, false);
|
||||||
@ -151,12 +170,7 @@ uint32_t av_map_videotoolbox_format_from_pixfmt(enum AVPixelFormat pix_fmt)
|
|||||||
|
|
||||||
uint32_t av_map_videotoolbox_format_from_pixfmt2(enum AVPixelFormat pix_fmt, bool full_range)
|
uint32_t av_map_videotoolbox_format_from_pixfmt2(enum AVPixelFormat pix_fmt, bool full_range)
|
||||||
{
|
{
|
||||||
int i;
|
return vt_format_from_pixfmt(pix_fmt, full_range ? AVCOL_RANGE_JPEG : AVCOL_RANGE_MPEG);
|
||||||
for (i = 0; i < FF_ARRAY_ELEMS(cv_pix_fmts); i++) {
|
|
||||||
if (cv_pix_fmts[i].pix_fmt == pix_fmt && cv_pix_fmts[i].full_range == full_range)
|
|
||||||
return cv_pix_fmts[i].cv_fmt;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int vt_pool_alloc(AVHWFramesContext *ctx)
|
static int vt_pool_alloc(AVHWFramesContext *ctx)
|
||||||
@ -166,6 +180,7 @@ static int vt_pool_alloc(AVHWFramesContext *ctx)
|
|||||||
CFNumberRef w, h, pixfmt;
|
CFNumberRef w, h, pixfmt;
|
||||||
uint32_t cv_pixfmt;
|
uint32_t cv_pixfmt;
|
||||||
CFMutableDictionaryRef attributes, iosurface_properties;
|
CFMutableDictionaryRef attributes, iosurface_properties;
|
||||||
|
AVVTFramesContext *hw_ctx = ctx->hwctx;
|
||||||
|
|
||||||
attributes = CFDictionaryCreateMutable(
|
attributes = CFDictionaryCreateMutable(
|
||||||
NULL,
|
NULL,
|
||||||
@ -173,7 +188,7 @@ static int vt_pool_alloc(AVHWFramesContext *ctx)
|
|||||||
&kCFTypeDictionaryKeyCallBacks,
|
&kCFTypeDictionaryKeyCallBacks,
|
||||||
&kCFTypeDictionaryValueCallBacks);
|
&kCFTypeDictionaryValueCallBacks);
|
||||||
|
|
||||||
cv_pixfmt = av_map_videotoolbox_format_from_pixfmt(ctx->sw_format);
|
cv_pixfmt = vt_format_from_pixfmt(ctx->sw_format, hw_ctx->color_range);
|
||||||
pixfmt = CFNumberCreate(NULL, kCFNumberSInt32Type, &cv_pixfmt);
|
pixfmt = CFNumberCreate(NULL, kCFNumberSInt32Type, &cv_pixfmt);
|
||||||
CFDictionarySetValue(
|
CFDictionarySetValue(
|
||||||
attributes,
|
attributes,
|
||||||
@ -750,6 +765,7 @@ const HWContextType ff_hwcontext_type_videotoolbox = {
|
|||||||
.frames_priv_size = sizeof(VTFramesContext),
|
.frames_priv_size = sizeof(VTFramesContext),
|
||||||
|
|
||||||
.device_create = vt_device_create,
|
.device_create = vt_device_create,
|
||||||
|
.frames_hwctx_size = sizeof(AVVTFramesContext),
|
||||||
.frames_init = vt_frames_init,
|
.frames_init = vt_frames_init,
|
||||||
.frames_get_buffer = vt_get_buffer,
|
.frames_get_buffer = vt_get_buffer,
|
||||||
.frames_get_constraints = vt_frames_get_constraints,
|
.frames_get_constraints = vt_frames_get_constraints,
|
||||||
|
@ -39,10 +39,13 @@
|
|||||||
* depending on application usage, so it is preferable to let CoreVideo manage
|
* depending on application usage, so it is preferable to let CoreVideo manage
|
||||||
* the pool using the default implementation.
|
* the pool using the default implementation.
|
||||||
*
|
*
|
||||||
* Currently AVHWDeviceContext.hwctx and AVHWFramesContext.hwctx are always
|
* Currently AVHWDeviceContext.hwctx are always NULL.
|
||||||
* NULL.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
typedef struct AVVTFramesContext {
|
||||||
|
enum AVColorRange color_range;
|
||||||
|
} AVVTFramesContext;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert a VideoToolbox (actually CoreVideo) format to AVPixelFormat.
|
* Convert a VideoToolbox (actually CoreVideo) format to AVPixelFormat.
|
||||||
* Returns AV_PIX_FMT_NONE if no known equivalent was found.
|
* Returns AV_PIX_FMT_NONE if no known equivalent was found.
|
||||||
|
@ -80,7 +80,7 @@
|
|||||||
|
|
||||||
#define LIBAVUTIL_VERSION_MAJOR 58
|
#define LIBAVUTIL_VERSION_MAJOR 58
|
||||||
#define LIBAVUTIL_VERSION_MINOR 36
|
#define LIBAVUTIL_VERSION_MINOR 36
|
||||||
#define LIBAVUTIL_VERSION_MICRO 100
|
#define LIBAVUTIL_VERSION_MICRO 101
|
||||||
|
|
||||||
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
|
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
|
||||||
LIBAVUTIL_VERSION_MINOR, \
|
LIBAVUTIL_VERSION_MINOR, \
|
||||||
|
Loading…
Reference in New Issue
Block a user