]> git.sesse.net Git - ffmpeg/blob - libavdevice/decklink_common.h
Merge commit '0e4c166cdd6446522a085dd9731967d09ac71f72'
[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 class decklink_output_callback;
38 class decklink_input_callback;
39
40 typedef struct AVPacketQueue {
41     AVPacketList *first_pkt, *last_pkt;
42     int nb_packets;
43     unsigned long long size;
44     int abort_request;
45     pthread_mutex_t mutex;
46     pthread_cond_t cond;
47     AVFormatContext *avctx;
48     int64_t max_q_size;
49 } AVPacketQueue;
50
51 struct decklink_ctx {
52     /* DeckLink SDK interfaces */
53     IDeckLink *dl;
54     IDeckLinkOutput *dlo;
55     IDeckLinkInput *dli;
56     IDeckLinkConfiguration *cfg;
57     IDeckLinkAttributes *attr;
58     decklink_output_callback *output_callback;
59     decklink_input_callback *input_callback;
60
61     /* DeckLink mode information */
62     BMDTimeValue bmd_tb_den;
63     BMDTimeValue bmd_tb_num;
64     BMDDisplayMode bmd_mode;
65     BMDVideoConnection video_input;
66     BMDAudioConnection audio_input;
67     int bmd_width;
68     int bmd_height;
69     int bmd_field_dominance;
70
71     /* Capture buffer queue */
72     AVPacketQueue queue;
73
74     /* Streams present */
75     int audio;
76     int video;
77
78     /* Status */
79     int playback_started;
80     int capture_started;
81     int64_t last_pts;
82     unsigned long frameCount;
83     unsigned int dropped;
84     AVStream *audio_st;
85     AVStream *video_st;
86     AVStream *teletext_st;
87
88     /* Options */
89     int list_devices;
90     int list_formats;
91     int64_t teletext_lines;
92     double preroll;
93     int duplex_mode;
94     DecklinkPtsSource audio_pts_source;
95     DecklinkPtsSource video_pts_source;
96     int draw_bars;
97
98     int frames_preroll;
99     int frames_buffer;
100
101     pthread_mutex_t mutex;
102     pthread_cond_t cond;
103     int frames_buffer_available_spots;
104     int autodetect;
105
106     int channels;
107     int audio_depth;
108 };
109
110 typedef enum { DIRECTION_IN, DIRECTION_OUT} decklink_direction_t;
111
112 #ifdef _WIN32
113 #if BLACKMAGIC_DECKLINK_API_VERSION < 0x0a040000
114 typedef unsigned long buffercount_type;
115 #else
116 typedef unsigned int buffercount_type;
117 #endif
118 IDeckLinkIterator *CreateDeckLinkIteratorInstance(void);
119 #else
120 typedef uint32_t buffercount_type;
121 #endif
122
123 static const BMDAudioConnection decklink_audio_connection_map[] = {
124     (BMDAudioConnection)0,
125     bmdAudioConnectionEmbedded,
126     bmdAudioConnectionAESEBU,
127     bmdAudioConnectionAnalog,
128     bmdAudioConnectionAnalogXLR,
129     bmdAudioConnectionAnalogRCA,
130     bmdAudioConnectionMicrophone,
131 };
132
133 static const BMDVideoConnection decklink_video_connection_map[] = {
134     (BMDVideoConnection)0,
135     bmdVideoConnectionSDI,
136     bmdVideoConnectionHDMI,
137     bmdVideoConnectionOpticalSDI,
138     bmdVideoConnectionComponent,
139     bmdVideoConnectionComposite,
140     bmdVideoConnectionSVideo,
141 };
142
143 HRESULT ff_decklink_get_display_name(IDeckLink *This, const char **displayName);
144 int ff_decklink_set_configs(AVFormatContext *avctx, decklink_direction_t direction);
145 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);
146 int ff_decklink_set_format(AVFormatContext *avctx, decklink_direction_t direction, int num);
147 int ff_decklink_list_devices(AVFormatContext *avctx, struct AVDeviceInfoList *device_list, int show_inputs, int show_outputs);
148 void ff_decklink_list_devices_legacy(AVFormatContext *avctx, int show_inputs, int show_outputs);
149 int ff_decklink_list_formats(AVFormatContext *avctx, decklink_direction_t direction = DIRECTION_OUT);
150 void ff_decklink_cleanup(AVFormatContext *avctx);
151 int ff_decklink_init_device(AVFormatContext *avctx, const char* name);
152
153 #endif /* AVDEVICE_DECKLINK_COMMON_H */