33 CVPixelBufferRef pixbuf = (CVPixelBufferRef)frame->
data[3];
34 OSType pixel_format = CVPixelBufferGetPixelFormatType(pixbuf);
37 int linesize[4] = { 0 };
42 switch (pixel_format) {
47 "Unsupported pixel format: %u\n", pixel_format);
57 err = CVPixelBufferLockBaseAddress(pixbuf, kCVPixelBufferLock_ReadOnly);
58 if (err != kCVReturnSuccess) {
63 if (CVPixelBufferIsPlanar(pixbuf)) {
65 planes = CVPixelBufferGetPlaneCount(pixbuf);
66 for (i = 0; i < planes; i++) {
67 data[i] = CVPixelBufferGetBaseAddressOfPlane(pixbuf, i);
68 linesize[i] = CVPixelBufferGetBytesPerRowOfPlane(pixbuf, i);
71 data[0] = CVPixelBufferGetBaseAddress(pixbuf);
72 linesize[0] = CVPixelBufferGetBytesPerRow(pixbuf);
126 av_log(
NULL, loglevel,
"Error creating VDA decoder.\n");
packed YUV 4:2:2, 16bpp, Cb Y0 Cr Y1
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
void av_vda_default_free(AVCodecContext *ctx)
This function must be called to free the VDA context initialized with av_vda_default_init().
static void vda_uninit(AVCodecContext *s)
int vda_init(AVCodecContext *s)
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
#define AV_LOG_VERBOSE
Detailed information.
int av_vda_default_init(AVCodecContext *avctx)
This is a convenience function that creates and sets up the VDA context using an internal implementat...
int width
width and height of the video frame
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
Libavcodec external API header.
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.
int format
format of the frame, -1 if unknown or unset Values correspond to enum AVPixelFormat for video frames...
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Public libavcodec VDA header.
main external API structure.
int av_frame_get_buffer(AVFrame *frame, int align)
Allocate new buffer(s) for audio or video data.
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
static int vda_retrieve_data(AVCodecContext *s, AVFrame *frame)
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
void * opaque
Private data of the user, can be used to carry app specific stuff.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.