mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
140 lines
4.3 KiB
C
140 lines
4.3 KiB
C
/* GStreamer
|
|
* Copyright (C) 2011 David Schleef <ds@schleef.org>
|
|
*
|
|
* 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_DECKLINK_H_
|
|
#define _GST_DECKLINK_H_
|
|
|
|
#include <gst/gst.h>
|
|
#ifdef G_OS_UNIX
|
|
#include "linux/DeckLinkAPI.h"
|
|
#endif
|
|
|
|
#ifdef G_OS_WIN32
|
|
#include "win/DeckLinkAPI.h"
|
|
|
|
#include <comutil.h>
|
|
|
|
#define bool BOOL
|
|
|
|
#define COMSTR_T BSTR*
|
|
#define FREE_COM_STRING(s) delete[] s;
|
|
#define CONVERT_COM_STRING(s) BSTR _s = (BSTR)s; s = _com_util::ConvertBSTRToString(_s); ::SysFreeString(_s);
|
|
#else
|
|
#define COMSTR_T char*
|
|
#define FREE_COM_STRING(s) free ((void *) s)
|
|
#define CONVERT_COM_STRING(s)
|
|
#endif /* _MSC_VER */
|
|
|
|
typedef enum {
|
|
GST_DECKLINK_MODE_NTSC,
|
|
GST_DECKLINK_MODE_NTSC2398,
|
|
GST_DECKLINK_MODE_PAL,
|
|
GST_DECKLINK_MODE_NTSC_P,
|
|
GST_DECKLINK_MODE_PAL_P,
|
|
|
|
GST_DECKLINK_MODE_1080p2398,
|
|
GST_DECKLINK_MODE_1080p24,
|
|
GST_DECKLINK_MODE_1080p25,
|
|
GST_DECKLINK_MODE_1080p2997,
|
|
GST_DECKLINK_MODE_1080p30,
|
|
|
|
GST_DECKLINK_MODE_1080i50,
|
|
GST_DECKLINK_MODE_1080i5994,
|
|
GST_DECKLINK_MODE_1080i60,
|
|
|
|
GST_DECKLINK_MODE_1080p50,
|
|
GST_DECKLINK_MODE_1080p5994,
|
|
GST_DECKLINK_MODE_1080p60,
|
|
|
|
GST_DECKLINK_MODE_720p50,
|
|
GST_DECKLINK_MODE_720p5994,
|
|
GST_DECKLINK_MODE_720p60
|
|
} GstDecklinkModeEnum;
|
|
#define GST_TYPE_DECKLINK_MODE (gst_decklink_mode_get_type ())
|
|
GType gst_decklink_mode_get_type (void);
|
|
|
|
typedef enum {
|
|
GST_DECKLINK_CONNECTION_SDI,
|
|
GST_DECKLINK_CONNECTION_HDMI,
|
|
GST_DECKLINK_CONNECTION_OPTICAL_SDI,
|
|
GST_DECKLINK_CONNECTION_COMPONENT,
|
|
GST_DECKLINK_CONNECTION_COMPOSITE,
|
|
GST_DECKLINK_CONNECTION_SVIDEO
|
|
} GstDecklinkConnectionEnum;
|
|
#define GST_TYPE_DECKLINK_CONNECTION (gst_decklink_connection_get_type ())
|
|
GType gst_decklink_connection_get_type (void);
|
|
|
|
typedef enum {
|
|
GST_DECKLINK_AUDIO_CONNECTION_AUTO,
|
|
GST_DECKLINK_AUDIO_CONNECTION_EMBEDDED,
|
|
GST_DECKLINK_AUDIO_CONNECTION_AES_EBU,
|
|
GST_DECKLINK_AUDIO_CONNECTION_ANALOG
|
|
} GstDecklinkAudioConnectionEnum;
|
|
#define GST_TYPE_DECKLINK_AUDIO_CONNECTION (gst_decklink_audio_connection_get_type ())
|
|
GType gst_decklink_audio_connection_get_type (void);
|
|
|
|
typedef struct _GstDecklinkMode GstDecklinkMode;
|
|
struct _GstDecklinkMode {
|
|
BMDDisplayMode mode;
|
|
int width;
|
|
int height;
|
|
int fps_n;
|
|
int fps_d;
|
|
gboolean interlaced;
|
|
int par_n;
|
|
int par_d;
|
|
gboolean tff;
|
|
gboolean is_hdtv;
|
|
};
|
|
|
|
const GstDecklinkMode * gst_decklink_get_mode (GstDecklinkModeEnum e);
|
|
GstCaps * gst_decklink_mode_get_caps (GstDecklinkModeEnum e);
|
|
GstCaps * gst_decklink_mode_get_template_caps (void);
|
|
|
|
#define GST_DECKLINK_MODE_CAPS(w,h,n,d,i) \
|
|
"video/x-raw-yuv,format=(fourcc){ UYVY, v210 },width=" #w ",height=" #h \
|
|
",framerate=" #n "/" #d ",interlaced=" #i
|
|
|
|
#define GST_DECKLINK_CAPS \
|
|
GST_DECKLINK_MODE_CAPS(720,486,30000,1001,true) ";" \
|
|
GST_DECKLINK_MODE_CAPS(720,486,24000,1001,true) ";" \
|
|
GST_DECKLINK_MODE_CAPS(720,576,25,1,true) ";" \
|
|
GST_DECKLINK_MODE_CAPS(720,486,30000,1001,false) ";" \
|
|
GST_DECKLINK_MODE_CAPS(720,576,25,1,false) ";" \
|
|
\
|
|
GST_DECKLINK_MODE_CAPS(1920,1080,24000,1001,false) ";" \
|
|
GST_DECKLINK_MODE_CAPS(1920,1080,24,1,false) ";" \
|
|
GST_DECKLINK_MODE_CAPS(1920,1080,25,1,false) ";" \
|
|
GST_DECKLINK_MODE_CAPS(1920,1080,30000,1001,false) ";" \
|
|
GST_DECKLINK_MODE_CAPS(1920,1080,30,1,false) ";" \
|
|
\
|
|
GST_DECKLINK_MODE_CAPS(1920,1080,25,1,true) ";" \
|
|
GST_DECKLINK_MODE_CAPS(1920,1080,30000,1001,true) ";" \
|
|
GST_DECKLINK_MODE_CAPS(1920,1080,30,1,true) ";" \
|
|
\
|
|
GST_DECKLINK_MODE_CAPS(1920,1080,50,1,false) ";" \
|
|
GST_DECKLINK_MODE_CAPS(1920,1080,60000,1001,false) ";" \
|
|
GST_DECKLINK_MODE_CAPS(1920,1080,60,1,false) ";" \
|
|
\
|
|
GST_DECKLINK_MODE_CAPS(1280,720,50,1,false) ";" \
|
|
GST_DECKLINK_MODE_CAPS(1280,720,60000,1001,false) ";" \
|
|
GST_DECKLINK_MODE_CAPS(1280,720,60,1,false)
|
|
|
|
|
|
#endif
|