2011-11-11 14:48:21 +00:00
|
|
|
/*
|
|
|
|
* VDA HW acceleration
|
|
|
|
*
|
|
|
|
* copyright (c) 2011 Sebastien Zwickert
|
|
|
|
*
|
|
|
|
* This file is part of Libav.
|
|
|
|
*
|
|
|
|
* Libav is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Libav is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with Libav; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AVCODEC_VDA_H
|
|
|
|
#define AVCODEC_VDA_H
|
|
|
|
|
2012-04-08 12:08:05 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @ingroup lavc_codec_hwaccel_vda
|
|
|
|
* Public libavcodec VDA header.
|
|
|
|
*/
|
|
|
|
|
2012-08-14 09:45:29 +00:00
|
|
|
#include "libavcodec/version.h"
|
|
|
|
|
2011-11-11 14:48:21 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
// emmintrin.h is unable to compile with -std=c99 -Werror=missing-prototypes
|
|
|
|
// http://openradar.appspot.com/8026390
|
|
|
|
#undef __GNUC_STDC_INLINE__
|
|
|
|
|
|
|
|
#define Picture QuickdrawPicture
|
|
|
|
#include <VideoDecodeAcceleration/VDADecoder.h>
|
|
|
|
#undef Picture
|
|
|
|
|
2012-04-08 12:08:05 +00:00
|
|
|
/**
|
|
|
|
* @defgroup lavc_codec_hwaccel_vda VDA
|
|
|
|
* @ingroup lavc_codec_hwaccel
|
|
|
|
*
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2011-11-11 14:48:21 +00:00
|
|
|
/**
|
|
|
|
* This structure is used to provide the necessary configurations and data
|
|
|
|
* to the VDA Libav HWAccel implementation.
|
|
|
|
*
|
|
|
|
* The application must make it available as AVCodecContext.hwaccel_context.
|
|
|
|
*/
|
|
|
|
struct vda_context {
|
|
|
|
/**
|
2012-08-14 09:48:17 +00:00
|
|
|
* VDA decoder object.
|
|
|
|
*
|
|
|
|
* - encoding: unused
|
|
|
|
* - decoding: Set/Unset by libavcodec.
|
|
|
|
*/
|
2011-11-11 14:48:21 +00:00
|
|
|
VDADecoder decoder;
|
|
|
|
|
2012-08-14 09:45:29 +00:00
|
|
|
/**
|
2012-08-14 09:48:17 +00:00
|
|
|
* The Core Video pixel buffer that contains the current image data.
|
|
|
|
*
|
|
|
|
* encoding: unused
|
|
|
|
* decoding: Set by libavcodec. Unset by user.
|
|
|
|
*/
|
2012-08-14 09:45:29 +00:00
|
|
|
CVPixelBufferRef cv_buffer;
|
|
|
|
|
|
|
|
/**
|
2012-08-14 09:48:17 +00:00
|
|
|
* Use the hardware decoder in synchronous mode.
|
|
|
|
*
|
|
|
|
* encoding: unused
|
|
|
|
* decoding: Set by user.
|
|
|
|
*/
|
2012-08-14 09:45:29 +00:00
|
|
|
int use_sync_decoding;
|
|
|
|
|
2011-11-11 14:48:21 +00:00
|
|
|
/**
|
2012-08-14 09:48:17 +00:00
|
|
|
* The frame width.
|
|
|
|
*
|
|
|
|
* - encoding: unused
|
|
|
|
* - decoding: Set/Unset by user.
|
|
|
|
*/
|
2011-11-11 14:48:21 +00:00
|
|
|
int width;
|
|
|
|
|
|
|
|
/**
|
2012-08-14 09:48:17 +00:00
|
|
|
* The frame height.
|
|
|
|
*
|
|
|
|
* - encoding: unused
|
|
|
|
* - decoding: Set/Unset by user.
|
|
|
|
*/
|
2011-11-11 14:48:21 +00:00
|
|
|
int height;
|
|
|
|
|
|
|
|
/**
|
2012-08-14 09:48:17 +00:00
|
|
|
* The frame format.
|
|
|
|
*
|
|
|
|
* - encoding: unused
|
|
|
|
* - decoding: Set/Unset by user.
|
|
|
|
*/
|
2011-11-11 14:48:21 +00:00
|
|
|
int format;
|
|
|
|
|
|
|
|
/**
|
2012-08-14 09:48:17 +00:00
|
|
|
* The pixel format for output image buffers.
|
|
|
|
*
|
|
|
|
* - encoding: unused
|
|
|
|
* - decoding: Set/Unset by user.
|
|
|
|
*/
|
2011-11-11 14:48:21 +00:00
|
|
|
OSType cv_pix_fmt_type;
|
2012-08-13 18:17:45 +00:00
|
|
|
|
|
|
|
/**
|
2012-08-14 09:48:17 +00:00
|
|
|
* The current bitstream buffer.
|
|
|
|
*/
|
2012-08-13 18:17:45 +00:00
|
|
|
uint8_t *priv_bitstream;
|
|
|
|
|
|
|
|
/**
|
2012-08-14 09:48:17 +00:00
|
|
|
* The current size of the bitstream.
|
|
|
|
*/
|
2012-08-13 18:17:45 +00:00
|
|
|
int priv_bitstream_size;
|
|
|
|
|
|
|
|
/**
|
2012-08-14 09:48:17 +00:00
|
|
|
* The reference size used for fast reallocation.
|
|
|
|
*/
|
2012-08-13 18:17:45 +00:00
|
|
|
int priv_allocated_size;
|
2011-11-11 14:48:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Create the video decoder. */
|
|
|
|
int ff_vda_create_decoder(struct vda_context *vda_ctx,
|
|
|
|
uint8_t *extradata,
|
|
|
|
int extradata_size);
|
|
|
|
|
|
|
|
/** Destroy the video decoder. */
|
|
|
|
int ff_vda_destroy_decoder(struct vda_context *vda_ctx);
|
|
|
|
|
2012-04-08 12:08:05 +00:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2011-11-11 14:48:21 +00:00
|
|
|
#endif /* AVCODEC_VDA_H */
|