]> git.sesse.net Git - vlc/blob - modules/access/sdi.cpp
Reduce our usleep hack time from 50ms to 10ms (a frame is 40ms...).
[vlc] / modules / access / sdi.cpp
1 /* BlackMagic SDI driver */
2
3 #ifdef HAVE_CONFIG_H
4 # include "config.h"
5 #endif
6
7 #ifndef INT64_C
8 #define INT64_C(c) c ## LL
9 #endif
10
11 #include <vlc_common.h>
12 #include <vlc_plugin.h>
13 #include <vlc_input.h>
14 #include <vlc_demux.h>
15 #include <vlc_access.h>
16 #include <vlc_picture.h>
17 #include <vlc_charset.h>
18 #include <vlc_fs.h>
19
20 #include "DeckLinkAPI.h"
21 #include "DeckLinkAPIDispatch.cpp"
22
23 static int  Open ( vlc_object_t * );
24 static void Close( vlc_object_t * );
25
26 #define CACHING_TEXT N_("Caching value in ms")
27 #define CACHING_LONGTEXT N_( \
28     "Caching value for SDI captures. This " \
29     "value should be set in milliseconds." )
30
31 vlc_module_begin ()
32     set_shortname( N_("SDI") )
33     set_description( N_("BlackMagic SDI input") )
34     set_category( CAT_INPUT )
35     set_subcategory( SUBCAT_INPUT_ACCESS )
36
37     add_integer( "sdi-caching", DEFAULT_PTS_DELAY / 1000, NULL,
38                  CACHING_TEXT, CACHING_LONGTEXT, true )
39
40     add_shortcut( "sdi" )
41     set_capability( "access_demux", 10 )
42     set_callbacks( Open, Close )
43 vlc_module_end ()
44
45 static int Demux  ( demux_t * );
46 static int Control( demux_t *, int, va_list );
47
48 class DeckLinkCaptureDelegate;
49
50 struct demux_sys_t
51 {
52     IDeckLink *p_card;
53     IDeckLinkInput *p_input;
54     DeckLinkCaptureDelegate *p_delegate;
55     es_out_id_t  *p_es;
56
57     vlc_mutex_t lock;
58     block_t *p_frame;  // protected by <lock>
59 };
60
61 class DeckLinkCaptureDelegate : public IDeckLinkInputCallback
62 {
63 public:
64     DeckLinkCaptureDelegate( demux_t *p_demux ) : p_demux_(p_demux) {}
65
66     // FIXME: These leak.
67     virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, LPVOID *ppv) { return E_NOINTERFACE; }
68     virtual ULONG STDMETHODCALLTYPE AddRef(void) { return 1; }
69     virtual ULONG STDMETHODCALLTYPE Release(void) { return 1; }
70
71     virtual HRESULT STDMETHODCALLTYPE VideoInputFormatChanged(BMDVideoInputFormatChangedEvents, IDeckLinkDisplayMode*, BMDDetectedVideoInputFormatFlags);
72     virtual HRESULT STDMETHODCALLTYPE VideoInputFrameArrived(IDeckLinkVideoInputFrame*, IDeckLinkAudioInputPacket*);
73
74 private:
75     demux_t *p_demux_;
76 };
77
78 HRESULT DeckLinkCaptureDelegate::VideoInputFormatChanged(BMDVideoInputFormatChangedEvents events, IDeckLinkDisplayMode *mode, BMDDetectedVideoInputFormatFlags)
79 {
80     msg_Dbg( p_demux_, "Video input format changed" );    
81     return S_OK;
82 }
83
84 HRESULT DeckLinkCaptureDelegate::VideoInputFrameArrived(IDeckLinkVideoInputFrame* videoFrame, IDeckLinkAudioInputPacket* audioFrame)
85 {
86     demux_sys_t *p_sys = p_demux_->p_sys;
87
88     if(videoFrame)
89     {
90         if(videoFrame->GetFlags() & bmdFrameHasNoInputSource)
91         {
92             msg_Warn( p_demux_, "No input signal detected" );
93             return S_OK;
94         }
95
96         msg_Dbg( p_demux_, "Received a frame" );
97
98         block_t *p_frame;
99         p_frame = block_New( p_demux_, 720 * 576 * 3 );
100         if( !p_frame )
101         {
102             msg_Err( p_demux_, "Could not allocate memory for frame" );
103             return S_OK;
104         }
105
106         void *frame_bytes;
107         videoFrame->GetBytes( &frame_bytes );
108         memcpy( p_frame->p_buffer, frame_bytes, 720 * 576 * 3 );
109
110         BMDTimeValue stream_time, frame_duration;
111         videoFrame->GetStreamTime( &stream_time, &frame_duration, 1000000 );
112         p_frame->i_pts = stream_time;
113
114         vlc_mutex_lock( &p_sys->lock );
115         p_sys->p_frame = p_frame;  // FIXME: leak
116         vlc_mutex_unlock( &p_sys->lock );
117     }
118
119     return S_OK;
120 }
121
122 static int Open( vlc_object_t *p_this )
123 {
124     demux_t     *p_demux = (demux_t*)p_this;
125     demux_sys_t *p_sys;
126
127     /* Only when selected */
128     if( *p_demux->psz_access == '\0' )
129         return VLC_EGENERIC;
130
131     /* Set up p_demux */
132     p_demux->pf_demux = Demux;
133     p_demux->pf_control = Control;
134     p_demux->info.i_update = 0;
135     p_demux->info.i_title = 0;
136     p_demux->info.i_seekpoint = 0;
137     p_demux->p_sys = p_sys = (demux_sys_t*)calloc( 1, sizeof( demux_sys_t ) );
138     if( !p_sys )
139         return VLC_ENOMEM;
140
141     vlc_mutex_init( &p_sys->lock );
142     p_sys->p_frame = NULL;
143
144     IDeckLinkIterator *decklink_iterator = CreateDeckLinkIteratorInstance();
145     if( !decklink_iterator )
146     {
147         msg_Err( p_demux, "DeckLink drivers not found." );
148         // FIXME: Leak here and several other error paths.
149         return VLC_EGENERIC;
150     }
151
152     HRESULT result;
153     result = decklink_iterator->Next( &p_sys->p_card );
154
155     if( result != S_OK )
156     {
157         msg_Err( p_demux, "No DeckLink PCI cards found" );
158         return VLC_EGENERIC;
159     }
160
161     if( p_sys->p_card->QueryInterface(IID_IDeckLinkInput, (void**)&p_sys->p_input) != S_OK )
162     {
163         msg_Err( p_demux, "Card has no inputs" );
164         return VLC_EGENERIC;
165     }
166
167     p_sys->p_delegate = new DeckLinkCaptureDelegate( p_demux );
168     p_sys->p_input->SetCallback( p_sys->p_delegate );
169
170     result = p_sys->p_input->EnableVideoInput(bmdModePAL, bmdFormat8BitYUV, 0);
171     if( result != S_OK )
172     {
173         msg_Err( p_demux, "Failed to enable video input" );
174         return VLC_EGENERIC;
175     }
176
177     // FIXME: add audio
178     result = p_sys->p_input->StartStreams();
179     if( result != S_OK )
180     {
181         msg_Err( p_demux, "Failed to start streams" );
182         return VLC_EGENERIC;
183     }
184
185     /*eDeclare elementary streams */
186     es_format_t fmt;
187     es_format_Init( &fmt, VIDEO_ES, VLC_CODEC_UYVY );
188     fmt.video.i_width = 720;
189     fmt.video.i_height = 576;
190     fmt.video.i_sar_num = 1;
191     fmt.video.i_sar_den = 1;
192
193     msg_Dbg( p_demux, "added new video es %4.4s %dx%d",
194              (char*)&fmt.i_codec, fmt.video.i_width, fmt.video.i_height );
195     p_sys->p_es = es_out_Add( p_demux->out, &fmt );
196
197     /* Update default_pts to a suitable value for access */
198     var_Create( p_demux, "sdi-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
199
200     return VLC_SUCCESS;
201 }
202
203 static void Close( vlc_object_t *p_this )
204 {
205     demux_t     *p_demux = (demux_t *)p_this;
206     demux_sys_t *p_sys   = p_demux->p_sys;
207
208     free( p_sys );
209 }
210
211 static int Control( demux_t *p_demux, int i_query, va_list args )
212 {
213     bool *pb;
214     int64_t    *pi64;
215
216     switch( i_query )
217     {
218         /* Special for access_demux */
219         case DEMUX_CAN_PAUSE:
220         case DEMUX_CAN_SEEK:
221         case DEMUX_CAN_CONTROL_PACE:
222             pb = (bool*)va_arg( args, bool * );
223             *pb = false;
224             return VLC_SUCCESS;
225
226         case DEMUX_GET_PTS_DELAY:
227             pi64 = (int64_t*)va_arg( args, int64_t * );
228             *pi64 = var_GetInteger( p_demux, "sdi-caching" ) * 1000;
229             return VLC_SUCCESS;
230
231         case DEMUX_GET_TIME:
232             pi64 = (int64_t*)va_arg( args, int64_t * );
233             *pi64 = mdate();  // FIXME
234             return VLC_SUCCESS;
235
236         /* TODO implement others */
237         default:
238             return VLC_EGENERIC;
239     }
240
241     return VLC_EGENERIC;
242 }
243
244 static int Demux( demux_t *p_demux )
245 {
246     demux_sys_t *p_sys = p_demux->p_sys;
247
248     vlc_mutex_lock( &p_sys->lock );
249     block_t *p_block = p_sys->p_frame;
250     p_sys->p_frame = NULL;
251     vlc_mutex_unlock( &p_sys->lock );
252
253     if( p_block )
254     {
255         msg_Dbg( p_demux, "Sending frame" ); 
256         es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
257         es_out_Send( p_demux->out, p_sys->p_es, p_block );
258     }
259     else
260     {
261         usleep(10000);  // FIXME
262     }
263
264     return 1;
265 }
266