summaryrefslogtreecommitdiff
path: root/sys/applemedia/bufferfactory.m
blob: 27fce4de9df639b1761f0716627233b6da985908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * 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);
}

- (GstBuffer *)createGstBufferForSampleBuffer:(CFTypeRef)sbuf
{
  return gst_core_media_buffer_new (coreMediaCtx, sbuf);
}

@end