]> git.sesse.net Git - ffmpeg/blob - libavdevice/decklink_common.h
8064abdcb9d7655286a4993fed471104bc6090b9
[ffmpeg] / libavdevice / decklink_common.h
1 /*
2  * Blackmagic DeckLink common code
3  * Copyright (c) 2013-2014 Ramiro Polla, Luca Barbato, Deti Fliegl
4  * Copyright (c) 2017 Akamai Technologies, Inc.
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #ifndef AVDEVICE_DECKLINK_COMMON_H
24 #define AVDEVICE_DECKLINK_COMMON_H
25
26 #include <DeckLinkAPIVersion.h>
27
28 #include "libavutil/thread.h"
29 #include "decklink_common_c.h"
30
31 #ifdef _WIN32
32 #define DECKLINK_BOOL BOOL
33 #else
34 #define DECKLINK_BOOL bool
35 #endif
36
37 #ifdef _WIN32
38 static char *dup_wchar_to_utf8(wchar_t *w)
39 {
40     char *s = NULL;
41     int l = WideCharToMultiByte(CP_UTF8, 0, w, -1, 0, 0, 0, 0);
42     s = (char *) av_malloc(l);
43     if (s)
44         WideCharToMultiByte(CP_UTF8, 0, w, -1, s, l, 0, 0);
45     return s;
46 }
47 #define DECKLINK_STR    OLECHAR *
48 #define DECKLINK_STRDUP dup_wchar_to_utf8
49 #define DECKLINK_FREE(s) SysFreeString(s)
50 #elif defined(__APPLE__)
51 static char *dup_cfstring_to_utf8(CFStringRef w)
52 {
53     char s[256];
54     CFStringGetCString(w, s, 255, kCFStringEncodingUTF8);
55     return av_strdup(s);
56 }
57 #define DECKLINK_STR    const __CFString *
58 #define DECKLINK_STRDUP dup_cfstring_to_utf8
59 #define DECKLINK_FREE(s) CFRelease(s)
60 #else
61 #define DECKLINK_STR    const char *
62 #define DECKLINK_STRDUP av_strdup
63 /* free() is needed for a string returned by the DeckLink SDL. */
64 #define DECKLINK_FREE(s) free((void *) s)
65 #endif
66
67 class decklink_output_callback;
68 class decklink_input_callback;
69
70 typedef struct AVPacketQueue {
71     AVPacketList *first_pkt, *last_pkt;
72     int nb_packets;
73     unsigned long long size;
74     int abort_request;
75     pthread_mutex_t mutex;
76     pthread_cond_t cond;
77     AVFormatContext *avctx;
78     int64_t max_q_size;
79 } AVPacketQueue;
80
81 struct decklink_ctx {
82     /* DeckLink SDK interfaces */
83     IDeckLink *dl;
84     IDeckLinkOutput *dlo;
85     IDeckLinkInput *dli;
86     IDeckLinkConfiguration *cfg;
87     IDeckLinkAttributes *attr;
88     decklink_output_callback *output_callback;
89
90     /* DeckLink mode information */
91     BMDTimeValue bmd_tb_den;
92     BMDTimeValue bmd_tb_num;
93     BMDDisplayMode bmd_mode;
94     BMDVideoConnection video_input;
95     BMDAudioConnection audio_input;
96     int bmd_width;
97     int bmd_height;
98     int bmd_field_dominance;
99
100     /* Capture buffer queue */
101     AVPacketQueue queue;
102
103     /* Streams present */
104     int audio;
105     int video;
106
107     /* Status */
108     int playback_started;
109     int capture_started;
110     int64_t last_pts;
111     unsigned long frameCount;
112     unsigned int dropped;
113     AVStream *audio_st;
114     AVStream *video_st;
115     AVStream *teletext_st;
116
117     /* Options */
118     int list_devices;
119     int list_formats;
120     int64_t teletext_lines;
121     double preroll;
122     int duplex_mode;
123     DecklinkPtsSource audio_pts_source;
124     DecklinkPtsSource video_pts_source;
125     int draw_bars;
126
127     int frames_preroll;
128     int frames_buffer;
129
130     pthread_mutex_t mutex;
131     pthread_cond_t cond;
132     int frames_buffer_available_spots;
133     int autodetect;
134
135     int channels;
136     int audio_depth;
137 };
138
139 typedef enum { DIRECTION_IN, DIRECTION_OUT} decklink_direction_t;
140
141 #ifdef _WIN32
142 #if BLACKMAGIC_DECKLINK_API_VERSION < 0x0a040000
143 typedef unsigned long buffercount_type;
144 #else
145 typedef unsigned int buffercount_type;
146 #endif
147 IDeckLinkIterator *CreateDeckLinkIteratorInstance(void);
148 #else
149 typedef uint32_t buffercount_type;
150 #endif
151
152 static const BMDAudioConnection decklink_audio_connection_map[] = {
153     (BMDAudioConnection)0,
154     bmdAudioConnectionEmbedded,
155     bmdAudioConnectionAESEBU,
156     bmdAudioConnectionAnalog,
157     bmdAudioConnectionAnalogXLR,
158     bmdAudioConnectionAnalogRCA,
159     bmdAudioConnectionMicrophone,
160 };
161
162 static const BMDVideoConnection decklink_video_connection_map[] = {
163     (BMDVideoConnection)0,
164     bmdVideoConnectionSDI,
165     bmdVideoConnectionHDMI,
166     bmdVideoConnectionOpticalSDI,
167     bmdVideoConnectionComponent,
168     bmdVideoConnectionComposite,
169     bmdVideoConnectionSVideo,
170 };
171
172 HRESULT ff_decklink_get_display_name(IDeckLink *This, const char **displayName);
173 int ff_decklink_set_configs(AVFormatContext *avctx, decklink_direction_t direction);
174 int ff_decklink_set_format(AVFormatContext *avctx, int width, int height, int tb_num, int tb_den, enum AVFieldOrder field_order, decklink_direction_t direction = DIRECTION_OUT, int num = 0);
175 int ff_decklink_set_format(AVFormatContext *avctx, decklink_direction_t direction, int num);
176 int ff_decklink_list_devices(AVFormatContext *avctx, struct AVDeviceInfoList *device_list, int show_inputs, int show_outputs);
177 void ff_decklink_list_devices_legacy(AVFormatContext *avctx, int show_inputs, int show_outputs);
178 int ff_decklink_list_formats(AVFormatContext *avctx, decklink_direction_t direction = DIRECTION_OUT);
179 void ff_decklink_cleanup(AVFormatContext *avctx);
180 int ff_decklink_init_device(AVFormatContext *avctx, const char* name);
181
182 #endif /* AVDEVICE_DECKLINK_COMMON_H */