FFmpeg
videotoolbox_vp9.c
Go to the documentation of this file.
1 /*
2  * Videotoolbox hardware acceleration for VP9
3  *
4  * copyright (c) 2021 rcombs
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include "config.h"
24 #include "videotoolbox.h"
26 #include "vt_internal.h"
27 #include "libavutil/avutil.h"
28 #include "libavutil/frame.h"
29 #include "libavutil/hwcontext.h"
30 #include "libavutil/intreadwrite.h"
31 #include "libavutil/pixdesc.h"
32 #include "decode.h"
33 #include "internal.h"
34 #include "vp9shared.h"
35 
37 {
42 };
43 
44 static int get_vpx_chroma_subsampling(enum AVPixelFormat pixel_format,
45  enum AVChromaLocation chroma_location)
46 {
47  int chroma_w, chroma_h;
48  if (av_pix_fmt_get_chroma_sub_sample(pixel_format, &chroma_w, &chroma_h) == 0) {
49  if (chroma_w == 1 && chroma_h == 1) {
50  return (chroma_location == AVCHROMA_LOC_LEFT)
53  } else if (chroma_w == 1 && chroma_h == 0) {
54  return VPX_SUBSAMPLING_422;
55  } else if (chroma_w == 0 && chroma_h == 0) {
56  return VPX_SUBSAMPLING_444;
57  }
58  }
59  return -1;
60 }
61 
63 {
64  const VP9SharedContext *h = avctx->priv_data;
65  CFDataRef data = NULL;
66  uint8_t *p;
67  int vt_extradata_size;
68  uint8_t *vt_extradata;
69  int subsampling = get_vpx_chroma_subsampling(avctx->sw_pix_fmt, avctx->chroma_sample_location);
70 
71  vt_extradata_size = 1 + 3 + 6 + 2;
72  vt_extradata = av_malloc(vt_extradata_size);
73 
74  if (subsampling < 0)
75  return NULL;
76 
77  if (!vt_extradata)
78  return NULL;
79 
80  p = vt_extradata;
81 
82  *p++ = 1; /* version */
83  AV_WB24(p + 1, 0); /* flags */
84  p += 3;
85 
86  *p++ = h->h.profile;
87  *p++ = avctx->level;
88  *p++ = (h->h.bpp << 4) | (subsampling << 1) | (avctx->color_range == AVCOL_RANGE_JPEG);
89  *p++ = avctx->color_primaries;
90  *p++ = avctx->color_trc;
91  *p++ = avctx->colorspace;
92 
93  AV_WB16(p + 0, 0);
94  p += 2;
95 
96  av_assert0(p - vt_extradata == vt_extradata_size);
97 
98  data = CFDataCreate(kCFAllocatorDefault, vt_extradata, vt_extradata_size);
99  av_free(vt_extradata);
100  return data;
101 }
102 
104  const uint8_t *buffer,
105  uint32_t size)
106 {
107  return 0;
108 }
109 
111  const uint8_t *buffer,
112  uint32_t size)
113 {
114  VTContext *vtctx = avctx->internal->hwaccel_priv_data;
115 
116  return ff_videotoolbox_buffer_copy(vtctx, buffer, size);
117 }
118 
120 {
121  const VP9SharedContext *h = avctx->priv_data;
122  AVFrame *frame = h->frames[CUR_FRAME].tf.f;
123 
125 }
126 
128  .name = "vp9_videotoolbox",
129  .type = AVMEDIA_TYPE_VIDEO,
130  .id = AV_CODEC_ID_VP9,
131  .pix_fmt = AV_PIX_FMT_VIDEOTOOLBOX,
132  .alloc_frame = ff_videotoolbox_alloc_frame,
133  .start_frame = videotoolbox_vp9_start_frame,
134  .decode_slice = videotoolbox_vp9_decode_slice,
135  .end_frame = videotoolbox_vp9_end_frame,
136  .frame_params = ff_videotoolbox_frame_params,
138  .uninit = ff_videotoolbox_uninit,
139  .priv_data_size = sizeof(VTContext),
140 };
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
ff_videotoolbox_common_end_frame
int ff_videotoolbox_common_end_frame(AVCodecContext *avctx, AVFrame *frame)
AVCodecContext::colorspace
enum AVColorSpace colorspace
YUV colorspace type.
Definition: avcodec.h:960
videotoolbox_vp9_decode_slice
static int videotoolbox_vp9_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
Definition: videotoolbox_vp9.c:110
ff_videotoolbox_uninit
int ff_videotoolbox_uninit(AVCodecContext *avctx)
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:317
pixdesc.h
AVCodecContext::color_trc
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition: avcodec.h:953
AVCOL_RANGE_JPEG
@ AVCOL_RANGE_JPEG
Full range content.
Definition: pixfmt.h:597
internal.h
data
const char data[16]
Definition: mxf.c:143
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:31
VPX_SUBSAMPLING_444
@ VPX_SUBSAMPLING_444
Definition: videotoolbox_vp9.c:41
AVHWAccel
Definition: avcodec.h:2039
av_pix_fmt_get_chroma_sub_sample
int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor.
Definition: pixdesc.c:2688
ff_videotoolbox_common_init
int ff_videotoolbox_common_init(AVCodecContext *avctx)
videotoolbox.h
vp9shared.h
AVCodecContext::color_primaries
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition: avcodec.h:946
vt_internal.h
intreadwrite.h
VP9SharedContext
Definition: vp9shared.h:159
videotoolbox_vp9_end_frame
static int videotoolbox_vp9_end_frame(AVCodecContext *avctx)
Definition: videotoolbox_vp9.c:119
AV_CODEC_ID_VP9
@ AV_CODEC_ID_VP9
Definition: codec_id.h:218
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
ff_videotoolbox_vpcc_extradata_create
CFDataRef ff_videotoolbox_vpcc_extradata_create(AVCodecContext *avctx)
Definition: videotoolbox_vp9.c:62
videotoolbox_vp9_start_frame
static int videotoolbox_vp9_start_frame(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
Definition: videotoolbox_vp9.c:103
decode.h
NULL
#define NULL
Definition: coverity.c:32
AVCodecContext::color_range
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition: avcodec.h:967
AV_WB16
#define AV_WB16(p, v)
Definition: intreadwrite.h:405
AVCHROMA_LOC_LEFT
@ AVCHROMA_LOC_LEFT
MPEG-2/4 4:2:0, H.264 default for 4:2:0.
Definition: pixfmt.h:618
AVCodecContext::internal
struct AVCodecInternal * internal
Private context used for internal data.
Definition: avcodec.h:418
VPX_SUBSAMPLING_420_VERTICAL
@ VPX_SUBSAMPLING_420_VERTICAL
Definition: videotoolbox_vp9.c:38
AVCodecContext::level
int level
level
Definition: avcodec.h:1651
ff_videotoolbox_frame_params
int ff_videotoolbox_frame_params(AVCodecContext *avctx, AVBufferRef *hw_frames_ctx)
VPX_CHROMA_SUBSAMPLING
VPX_CHROMA_SUBSAMPLING
Definition: videotoolbox_vp9.c:36
hwcontext_videotoolbox.h
AVCodecInternal::hwaccel_priv_data
void * hwaccel_priv_data
hwaccel-specific private data
Definition: internal.h:185
size
int size
Definition: twinvq_data.h:10344
AV_WB24
#define AV_WB24(p, d)
Definition: intreadwrite.h:450
frame.h
VTContext
Definition: vt_internal.h:25
AVChromaLocation
AVChromaLocation
Location of chroma samples.
Definition: pixfmt.h:616
AVHWAccel::name
const char * name
Name of the hardware accelerated codec.
Definition: avcodec.h:2045
AV_PIX_FMT_VIDEOTOOLBOX
@ AV_PIX_FMT_VIDEOTOOLBOX
hardware decoding through Videotoolbox
Definition: pixfmt.h:272
AVCodecContext::chroma_sample_location
enum AVChromaLocation chroma_sample_location
This defines the location of chroma samples.
Definition: avcodec.h:974
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
ff_videotoolbox_alloc_frame
int ff_videotoolbox_alloc_frame(AVCodecContext *avctx, AVFrame *frame)
Definition: videotoolbox.c:122
AVCodecContext
main external API structure.
Definition: avcodec.h:383
buffer
the frame and frame reference mechanism is intended to as much as expensive copies of that data while still allowing the filters to produce correct results The data is stored in buffers represented by AVFrame structures Several references can point to the same frame buffer
Definition: filter_design.txt:49
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
avutil.h
CUR_FRAME
#define CUR_FRAME
Definition: vp9shared.h:163
VPX_SUBSAMPLING_420_COLLOCATED_WITH_LUMA
@ VPX_SUBSAMPLING_420_COLLOCATED_WITH_LUMA
Definition: videotoolbox_vp9.c:39
ff_videotoolbox_buffer_copy
int ff_videotoolbox_buffer_copy(VTContext *vtctx, const uint8_t *buffer, uint32_t size)
Definition: videotoolbox.c:71
av_free
#define av_free(p)
Definition: tableprint_vlc.h:34
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:410
get_vpx_chroma_subsampling
static int get_vpx_chroma_subsampling(enum AVPixelFormat pixel_format, enum AVChromaLocation chroma_location)
Definition: videotoolbox_vp9.c:44
hwcontext.h
h
h
Definition: vp9dsp_template.c:2038
AVCodecContext::sw_pix_fmt
enum AVPixelFormat sw_pix_fmt
Nominal unaccelerated pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1717
ff_vp9_videotoolbox_hwaccel
const AVHWAccel ff_vp9_videotoolbox_hwaccel
Definition: videotoolbox_vp9.c:127
VPX_SUBSAMPLING_422
@ VPX_SUBSAMPLING_422
Definition: videotoolbox_vp9.c:40