mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
61 lines
1.5 KiB
Objective-C
61 lines
1.5 KiB
Objective-C
/*
|
|
* 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.
|
|
*/
|
|
|
|
#import "bufferfactory.h"
|
|
|
|
#include "coremediabuffer.h"
|
|
#include "corevideobuffer.h"
|
|
|
|
@implementation GstAMBufferFactory
|
|
|
|
- (id)initWithError:(GError **)error
|
|
{
|
|
GstCoreMediaCtx *ctx;
|
|
|
|
ctx =
|
|
gst_core_media_ctx_new (GST_API_CORE_VIDEO | GST_API_CORE_MEDIA, error);
|
|
if (ctx == NULL)
|
|
return nil;
|
|
|
|
if ((self = [super init]))
|
|
coreMediaCtx = ctx;
|
|
else
|
|
g_object_unref (ctx);
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)finalize
|
|
{
|
|
g_object_unref (coreMediaCtx);
|
|
|
|
[super finalize];
|
|
}
|
|
|
|
- (GstBuffer *)createGstBufferForCoreVideoBuffer:(CFTypeRef)cvbuf
|
|
{
|
|
return gst_core_video_buffer_new (coreMediaCtx, (CVBufferRef) cvbuf, NULL);
|
|
}
|
|
|
|
- (GstBuffer *)createGstBufferForSampleBuffer:(CFTypeRef)sbuf
|
|
{
|
|
return gst_core_media_buffer_new (coreMediaCtx, sbuf);
|
|
}
|
|
|
|
@end
|