~ubuntu-branches/ubuntu/quantal/gst-plugins-bad0.10/quantal-proposed

« back to all changes in this revision

Viewing changes to sys/decklink/gstdecklinksink.h

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine
  • Date: 2011-07-19 14:32:43 UTC
  • mfrom: (18.4.21 sid)
  • Revision ID: james.westby@ubuntu.com-20110719143243-p7pnkh45akfp0ihk
Tags: 0.10.22-2ubuntu1
* Rebased on debian unstable, remaining changes:
  - debian/gstreamer-plugins-bad.install
    * don't include dtmf, liveadder, rtpmux, autoconvert and shm, we include 
      them in -good

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GStreamer
 
2
 * Copyright (C) 2011 David Schleef <ds@schleef.org>
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Library General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef _GST_DECKLINK_SINK_H_
 
21
#define _GST_DECKLINK_SINK_H_
 
22
 
 
23
#include <gst/gst.h>
 
24
#include "DeckLinkAPI.h"
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
#define GST_TYPE_DECKLINK_SINK   (gst_decklink_sink_get_type())
 
29
#define GST_DECKLINK_SINK(obj)   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DECKLINK_SINK,GstDecklinkSink))
 
30
#define GST_DECKLINK_SINK_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DECKLINK_SINK,GstDecklinkSinkClass))
 
31
#define GST_IS_DECKLINK_SINK(obj)   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DECKLINK_SINK))
 
32
#define GST_IS_DECKLINK_SINK_CLASS(obj)   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DECKLINK_SINK))
 
33
 
 
34
typedef struct _GstDecklinkSink GstDecklinkSink;
 
35
typedef struct _GstDecklinkSinkClass GstDecklinkSinkClass;
 
36
 
 
37
class Output : public IDeckLinkVideoOutputCallback,
 
38
public IDeckLinkAudioOutputCallback
 
39
{
 
40
  public:
 
41
    GstDecklinkSink *decklinksink;
 
42
 
 
43
    virtual HRESULT STDMETHODCALLTYPE QueryInterface (REFIID iid, LPVOID *ppv)        {return E_NOINTERFACE;}
 
44
    virtual ULONG STDMETHODCALLTYPE AddRef () {return 1;}
 
45
    virtual ULONG STDMETHODCALLTYPE Release () {return 1;}
 
46
    virtual HRESULT STDMETHODCALLTYPE ScheduledFrameCompleted (IDeckLinkVideoFrame* completedFrame, BMDOutputFrameCompletionResult result);
 
47
    virtual HRESULT STDMETHODCALLTYPE ScheduledPlaybackHasStopped ();
 
48
    virtual HRESULT STDMETHODCALLTYPE RenderAudioSamples (bool preroll);
 
49
};
 
50
 
 
51
struct _GstDecklinkSink
 
52
{
 
53
  GstElement base_decklinksink;
 
54
 
 
55
  GstPad *videosinkpad;
 
56
  GstPad *audiosinkpad;
 
57
 
 
58
  GMutex *mutex;
 
59
  GCond *cond;
 
60
  int queued_frames;
 
61
  gboolean stop;
 
62
 
 
63
  IDeckLink *decklink;
 
64
  IDeckLinkOutput *output;
 
65
  Output *callback;
 
66
  BMDDisplayMode display_mode;
 
67
  gboolean video_enabled;
 
68
  gboolean sched_started;
 
69
 
 
70
  int num_frames;
 
71
  int fps_n;
 
72
  int fps_d;
 
73
  int width;
 
74
  int height;
 
75
  gboolean interlaced;
 
76
  BMDDisplayMode bmd_mode;
 
77
 
 
78
  /* properties */
 
79
  int mode;
 
80
 
 
81
};
 
82
 
 
83
struct _GstDecklinkSinkClass
 
84
{
 
85
  GstElementClass base_decklinksink_class;
 
86
};
 
87
 
 
88
GType gst_decklink_sink_get_type (void);
 
89
 
 
90
G_END_DECLS
 
91
 
 
92
#endif