2010-10-27 17:30:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 Ole André Vadla Ravnås <oravnas@cisco.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_VT_API_H__
|
|
|
|
#define __GST_VT_API_H__
|
|
|
|
|
|
|
|
#include "cmapi.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct _GstVTApi GstVTApi;
|
|
|
|
typedef struct _GstVTApiClass GstVTApiClass;
|
|
|
|
|
|
|
|
typedef enum _VTStatus VTStatus;
|
|
|
|
|
|
|
|
typedef guint32 VTFormatId;
|
|
|
|
|
2010-11-02 22:08:30 +00:00
|
|
|
typedef CFTypeRef VTCompressionSessionRef;
|
|
|
|
typedef CFTypeRef VTDecompressionSessionRef;
|
2010-10-27 17:30:11 +00:00
|
|
|
typedef struct _VTCompressionOutputCallback VTCompressionOutputCallback;
|
|
|
|
typedef struct _VTDecompressionOutputCallback VTDecompressionOutputCallback;
|
|
|
|
|
|
|
|
typedef VTStatus (* VTCompressionOutputCallbackFunc) (void * data, int a2,
|
2010-11-02 21:53:33 +00:00
|
|
|
int a3, int a4, CMSampleBufferRef sbuf, int a6, int a7);
|
2010-10-27 17:30:11 +00:00
|
|
|
typedef void (* VTDecompressionOutputCallbackFunc) (void * data, gsize unk1,
|
|
|
|
VTStatus result, gsize unk2, CVBufferRef cvbuf);
|
|
|
|
|
|
|
|
enum _VTStatus
|
|
|
|
{
|
|
|
|
kVTSuccess = 0
|
|
|
|
};
|
|
|
|
|
|
|
|
enum _VTFormat
|
|
|
|
{
|
|
|
|
kVTFormatH264 = 'avc1',
|
|
|
|
kVTFormatJPEG = 'jpeg'
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _VTCompressionOutputCallback
|
|
|
|
{
|
|
|
|
VTCompressionOutputCallbackFunc func;
|
|
|
|
void * data;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _VTDecompressionOutputCallback
|
|
|
|
{
|
|
|
|
VTDecompressionOutputCallbackFunc func;
|
|
|
|
void * data;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstVTApi
|
|
|
|
{
|
|
|
|
GstDynApi parent;
|
|
|
|
|
|
|
|
VTStatus (* VTCompressionSessionCompleteFrames)
|
2010-11-02 22:08:30 +00:00
|
|
|
(VTCompressionSessionRef session, CMTime completeUntilDisplayTimestamp);
|
2010-10-27 17:30:11 +00:00
|
|
|
VTStatus (* VTCompressionSessionCopyProperty)
|
2010-11-02 22:08:30 +00:00
|
|
|
(VTCompressionSessionRef session, CFTypeRef key, void* unk,
|
2010-10-27 17:30:11 +00:00
|
|
|
CFTypeRef * value);
|
|
|
|
VTStatus (* VTCompressionSessionCopySupportedPropertyDictionary)
|
2010-11-02 22:08:30 +00:00
|
|
|
(VTCompressionSessionRef session, CFDictionaryRef * dict);
|
2010-10-27 17:30:11 +00:00
|
|
|
VTStatus (* VTCompressionSessionCreate)
|
|
|
|
(CFAllocatorRef allocator, gint width, gint height, VTFormatId formatId,
|
|
|
|
gsize unk1, CFDictionaryRef sourcePixelBufferAttributes, gsize unk2,
|
|
|
|
VTCompressionOutputCallback outputCallback,
|
2010-11-02 22:08:30 +00:00
|
|
|
VTCompressionSessionRef * session);
|
2010-10-27 17:30:11 +00:00
|
|
|
VTStatus (* VTCompressionSessionEncodeFrame)
|
2010-11-02 22:08:30 +00:00
|
|
|
(VTCompressionSessionRef session, CVPixelBufferRef pixelBuffer,
|
2010-11-02 21:53:33 +00:00
|
|
|
CMTime displayTimestamp, CMTime displayDuration,
|
2010-10-27 17:30:11 +00:00
|
|
|
CFDictionaryRef frameOptions, void * sourceTrackingCallback,
|
|
|
|
void * sourceFrameRefCon);
|
|
|
|
void (* VTCompressionSessionInvalidate)
|
2010-11-02 22:08:30 +00:00
|
|
|
(VTCompressionSessionRef session);
|
2010-10-27 17:30:11 +00:00
|
|
|
void (* VTCompressionSessionRelease)
|
2010-11-02 22:08:30 +00:00
|
|
|
(VTCompressionSessionRef session);
|
|
|
|
VTCompressionSessionRef (* VTCompressionSessionRetain)
|
|
|
|
(VTCompressionSessionRef session);
|
2010-10-27 17:30:11 +00:00
|
|
|
VTStatus (* VTCompressionSessionSetProperty)
|
2010-11-02 22:08:30 +00:00
|
|
|
(VTCompressionSessionRef session, CFStringRef propName,
|
2010-10-27 17:30:11 +00:00
|
|
|
CFTypeRef propValue);
|
|
|
|
|
|
|
|
VTStatus (* VTDecompressionSessionCreate)
|
2010-11-02 22:08:30 +00:00
|
|
|
(CFAllocatorRef allocator,
|
|
|
|
CMFormatDescriptionRef videoFormatDescription,
|
|
|
|
CFTypeRef sessionOptions,
|
|
|
|
CFDictionaryRef destinationPixelBufferAttributes,
|
2010-10-27 17:30:11 +00:00
|
|
|
VTDecompressionOutputCallback * outputCallback,
|
2010-11-02 22:08:30 +00:00
|
|
|
VTDecompressionSessionRef * session);
|
2010-10-27 17:30:11 +00:00
|
|
|
VTStatus (* VTDecompressionSessionDecodeFrame)
|
2010-11-02 22:08:30 +00:00
|
|
|
(VTDecompressionSessionRef session, CMSampleBufferRef sbuf, gsize unk1,
|
2010-10-27 17:30:11 +00:00
|
|
|
gsize unk2, gsize unk3);
|
|
|
|
void (* VTDecompressionSessionInvalidate)
|
2010-11-02 22:08:30 +00:00
|
|
|
(VTDecompressionSessionRef session);
|
2010-10-27 17:30:11 +00:00
|
|
|
void (* VTDecompressionSessionRelease)
|
2010-11-02 22:08:30 +00:00
|
|
|
(VTDecompressionSessionRef session);
|
|
|
|
VTDecompressionSessionRef (* VTDecompressionSessionRetain)
|
|
|
|
(VTDecompressionSessionRef session);
|
2010-10-27 17:30:11 +00:00
|
|
|
VTStatus (* VTDecompressionSessionWaitForAsynchronousFrames)
|
2010-11-02 22:08:30 +00:00
|
|
|
(VTDecompressionSessionRef session);
|
2010-10-27 17:30:11 +00:00
|
|
|
|
|
|
|
CFStringRef * kVTCompressionPropertyKey_AllowTemporalCompression;
|
|
|
|
CFStringRef * kVTCompressionPropertyKey_AverageDataRate;
|
|
|
|
CFStringRef * kVTCompressionPropertyKey_ExpectedFrameRate;
|
|
|
|
CFStringRef * kVTCompressionPropertyKey_ExpectedDuration;
|
|
|
|
CFStringRef * kVTCompressionPropertyKey_MaxKeyFrameInterval;
|
|
|
|
CFStringRef * kVTCompressionPropertyKey_MaxKeyFrameIntervalDuration;
|
|
|
|
CFStringRef * kVTCompressionPropertyKey_ProfileLevel;
|
|
|
|
CFStringRef * kVTCompressionPropertyKey_Usage;
|
|
|
|
CFStringRef * kVTEncodeFrameOptionKey_ForceKeyFrame;
|
|
|
|
CFStringRef * kVTProfileLevel_H264_Baseline_1_3;
|
|
|
|
CFStringRef * kVTProfileLevel_H264_Baseline_3_0;
|
|
|
|
CFStringRef * kVTProfileLevel_H264_Extended_5_0;
|
|
|
|
CFStringRef * kVTProfileLevel_H264_High_5_0;
|
|
|
|
CFStringRef * kVTProfileLevel_H264_Main_3_0;
|
|
|
|
CFStringRef * kVTProfileLevel_H264_Main_3_1;
|
|
|
|
CFStringRef * kVTProfileLevel_H264_Main_4_0;
|
|
|
|
CFStringRef * kVTProfileLevel_H264_Main_4_1;
|
|
|
|
CFStringRef * kVTProfileLevel_H264_Main_5_0;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstVTApiClass
|
|
|
|
{
|
|
|
|
GstDynApiClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_vt_api_get_type (void);
|
|
|
|
|
|
|
|
GstVTApi * gst_vt_api_obtain (GError ** error);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif
|