FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ffmpeg_videotoolbox.c
Go to the documentation of this file.
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18 
19 #include <CoreServices/CoreServices.h>
20 
21 #include "config.h"
22 #include "libavcodec/avcodec.h"
23 #if CONFIG_VDA
24 # include "libavcodec/vda.h"
25 #endif
26 #if CONFIG_VIDEOTOOLBOX
27 # include "libavcodec/videotoolbox.h"
28 #endif
29 #include "libavutil/imgutils.h"
30 #include "ffmpeg.h"
31 
32 typedef struct VTContext {
34 } VTContext;
35 
37 
39 {
40  InputStream *ist = s->opaque;
41  VTContext *vt = ist->hwaccel_ctx;
42  CVPixelBufferRef pixbuf = (CVPixelBufferRef)frame->data[3];
43  OSType pixel_format = CVPixelBufferGetPixelFormatType(pixbuf);
44  CVReturn err;
45  uint8_t *data[4] = { 0 };
46  int linesize[4] = { 0 };
47  int planes, ret, i;
48  char codec_str[32];
49 
51 
52  switch (pixel_format) {
53  case kCVPixelFormatType_420YpCbCr8Planar: vt->tmp_frame->format = AV_PIX_FMT_YUV420P; break;
54  case kCVPixelFormatType_422YpCbCr8: vt->tmp_frame->format = AV_PIX_FMT_UYVY422; break;
55  case kCVPixelFormatType_32BGRA: vt->tmp_frame->format = AV_PIX_FMT_BGRA; break;
56 #ifdef kCFCoreFoundationVersionNumber10_7
57  case kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange: vt->tmp_frame->format = AV_PIX_FMT_NV12; break;
58 #endif
59  default:
60  av_get_codec_tag_string(codec_str, sizeof(codec_str), s->codec_tag);
62  "%s: Unsupported pixel format: %s\n", codec_str, videotoolbox_pixfmt);
63  return AVERROR(ENOSYS);
64  }
65 
66  vt->tmp_frame->width = frame->width;
67  vt->tmp_frame->height = frame->height;
68  ret = av_frame_get_buffer(vt->tmp_frame, 32);
69  if (ret < 0)
70  return ret;
71 
72  err = CVPixelBufferLockBaseAddress(pixbuf, kCVPixelBufferLock_ReadOnly);
73  if (err != kCVReturnSuccess) {
74  av_log(NULL, AV_LOG_ERROR, "Error locking the pixel buffer.\n");
75  return AVERROR_UNKNOWN;
76  }
77 
78  if (CVPixelBufferIsPlanar(pixbuf)) {
79 
80  planes = CVPixelBufferGetPlaneCount(pixbuf);
81  for (i = 0; i < planes; i++) {
82  data[i] = CVPixelBufferGetBaseAddressOfPlane(pixbuf, i);
83  linesize[i] = CVPixelBufferGetBytesPerRowOfPlane(pixbuf, i);
84  }
85  } else {
86  data[0] = CVPixelBufferGetBaseAddress(pixbuf);
87  linesize[0] = CVPixelBufferGetBytesPerRow(pixbuf);
88  }
89 
91  (const uint8_t **)data, linesize, vt->tmp_frame->format,
92  frame->width, frame->height);
93 
94  ret = av_frame_copy_props(vt->tmp_frame, frame);
95  CVPixelBufferUnlockBaseAddress(pixbuf, kCVPixelBufferLock_ReadOnly);
96  if (ret < 0)
97  return ret;
98 
99  av_frame_unref(frame);
100  av_frame_move_ref(frame, vt->tmp_frame);
101 
102  return 0;
103 }
104 
106 {
107  InputStream *ist = s->opaque;
108  VTContext *vt = ist->hwaccel_ctx;
109 
110  ist->hwaccel_uninit = NULL;
112 
113  av_frame_free(&vt->tmp_frame);
114 
115  if (ist->hwaccel_id == HWACCEL_VIDEOTOOLBOX) {
116 #if CONFIG_VIDEOTOOLBOX
118 #endif
119  } else {
120 #if CONFIG_VDA
122 #endif
123  }
124  av_freep(&ist->hwaccel_ctx);
125 }
126 
128 {
129  InputStream *ist = s->opaque;
130  int loglevel = (ist->hwaccel_id == HWACCEL_AUTO) ? AV_LOG_VERBOSE : AV_LOG_ERROR;
131  int ret = 0;
132  VTContext *vt;
133 
134  vt = av_mallocz(sizeof(*vt));
135  if (!vt)
136  return AVERROR(ENOMEM);
137 
138  ist->hwaccel_ctx = vt;
141 
142  vt->tmp_frame = av_frame_alloc();
143  if (!vt->tmp_frame) {
144  ret = AVERROR(ENOMEM);
145  goto fail;
146  }
147 
148  if (ist->hwaccel_id == HWACCEL_VIDEOTOOLBOX) {
149 #if CONFIG_VIDEOTOOLBOX
150  if (!videotoolbox_pixfmt) {
152  } else {
154  CFStringRef pixfmt_str = CFStringCreateWithCString(kCFAllocatorDefault,
156  kCFStringEncodingUTF8);
157  vtctx->cv_pix_fmt_type = UTGetOSTypeFromString(pixfmt_str);
158  ret = av_videotoolbox_default_init2(s, vtctx);
159  CFRelease(pixfmt_str);
160  }
161 #endif
162  } else {
163 #if CONFIG_VDA
164  if (!videotoolbox_pixfmt) {
165  ret = av_vda_default_init(s);
166  } else {
168  CFStringRef pixfmt_str = CFStringCreateWithCString(kCFAllocatorDefault,
170  kCFStringEncodingUTF8);
171  vdactx->cv_pix_fmt_type = UTGetOSTypeFromString(pixfmt_str);
172  ret = av_vda_default_init2(s, vdactx);
173  CFRelease(pixfmt_str);
174  }
175 #endif
176  }
177  if (ret < 0) {
178  av_log(NULL, loglevel,
179  "Error creating %s decoder.\n", ist->hwaccel_id == HWACCEL_VIDEOTOOLBOX ? "Videotoolbox" : "VDA");
180  goto fail;
181  }
182 
183  return 0;
184 fail:
186  return ret;
187 }
packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
Definition: pixfmt.h:83
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
int av_vda_default_init2(AVCodecContext *avctx, AVVDAContext *vdactx)
This is a convenience function that creates and sets up the VDA context using an internal implementat...
This structure describes decoded (raw) audio or video data.
Definition: frame.h:171
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
misc image utilities
static void videotoolbox_uninit(AVCodecContext *s)
AVFrame * tmp_frame
AVVideotoolboxContext * av_videotoolbox_alloc_context(void)
Allocate and initialize a Videotoolbox context.
char * videotoolbox_pixfmt
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
Definition: frame.c:484
size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_tag)
Put a string representing the codec tag codec_tag in buf.
Definition: utils.c:3055
void av_vda_default_free(AVCodecContext *ctx)
This function must be called to free the VDA context initialized with av_vda_default_init().
Definition: vda.c:76
static int videotoolbox_retrieve_data(AVCodecContext *s, AVFrame *frame)
This struct holds all the information that needs to be passed between the caller and libavcodec for i...
Definition: vda.h:163
uint8_t
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
Definition: frame.c:135
OSType cv_pix_fmt_type
CVPixelBuffer Format Type that VDA will use for decoded frames; set by the caller.
Definition: vda.h:179
static AVFrame * frame
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:192
int av_videotoolbox_default_init(AVCodecContext *avctx)
This is a convenience function that creates and sets up the Videotoolbox context using an internal im...
int av_vda_default_init(AVCodecContext *avctx)
This is a convenience function that creates and sets up the VDA context using an internal implementat...
Definition: vda.c:71
#define av_log(a,...)
int width
width and height of the video frame
Definition: frame.h:220
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
void(* hwaccel_uninit)(AVCodecContext *s)
Definition: ffmpeg.h:324
#define AVERROR(e)
Definition: error.h:43
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Definition: frame.c:148
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
Definition: pixfmt.h:97
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
Definition: pixfmt.h:91
Libavcodec external API header.
#define fail()
Definition: checkasm.h:57
void av_image_copy(uint8_t *dst_data[4], int dst_linesizes[4], const uint8_t *src_data[4], const int src_linesizes[4], enum AVPixelFormat pix_fmt, int width, int height)
Copy image in src_data to dst_data.
Definition: imgutils.c:288
int(* hwaccel_retrieve_data)(AVCodecContext *s, AVFrame *frame)
Definition: ffmpeg.h:326
int av_videotoolbox_default_init2(AVCodecContext *avctx, AVVideotoolboxContext *vtctx)
This is a convenience function that creates and sets up the Videotoolbox context using an internal im...
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
Definition: frame.h:232
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:199
Public libavcodec VDA header.
main external API structure.
Definition: avcodec.h:1502
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1534
int videotoolbox_init(AVCodecContext *s)
OSType cv_pix_fmt_type
CVPixelBuffer Format Type that Videotoolbox will use for decoded frames.
Definition: videotoolbox.h:63
int av_frame_get_buffer(AVFrame *frame, int align)
Allocate new buffer(s) for audio or video data.
Definition: frame.c:265
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:464
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:182
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:63
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition: error.h:71
void * hwaccel_ctx
Definition: ffmpeg.h:323
int height
Definition: frame.h:220
#define av_freep(p)
void av_videotoolbox_default_free(AVCodecContext *avctx)
This function must be called to free the Videotoolbox context initialized with av_videotoolbox_defaul...
AVVDAContext * av_vda_alloc_context(void)
Allocate and initialize a VDA context.
Definition: vda.c:66
enum HWAccelID hwaccel_id
Definition: ffmpeg.h:318
This struct holds all the information that needs to be passed between the caller and libavcodec for i...
Definition: videotoolbox.h:46
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:252
void * opaque
Private data of the user, can be used to carry app specific stuff.
Definition: avcodec.h:1559
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
Definition: frame.c:553
Public libavcodec Videotoolbox header.