]> git.sesse.net Git - vlc/blob - modules/access/sdi.cpp
Set i_pts to frame end instead of frame start, to avoid i_pts=0.
[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 frame_lock;
58     block_t *p_frame;  // protected by <frame_lock>
59     vlc_cond_t has_frame;  // related to <frame_lock>
60 };
61
62 class DeckLinkCaptureDelegate : public IDeckLinkInputCallback
63 {
64 public:
65     DeckLinkCaptureDelegate( demux_t *p_demux ) : p_demux_(p_demux) {}
66
67     // FIXME: These leak.
68     virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID iid, LPVOID *ppv) { return E_NOINTERFACE; }
69     virtual ULONG STDMETHODCALLTYPE AddRef(void) { return 1; }
70     virtual ULONG STDMETHODCALLTYPE Release(void) { return 1; }
71
72     virtual HRESULT STDMETHODCALLTYPE VideoInputFormatChanged(BMDVideoInputFormatChangedEvents, IDeckLinkDisplayMode*, BMDDetectedVideoInputFormatFlags);
73     virtual HRESULT STDMETHODCALLTYPE VideoInputFrameArrived(IDeckLinkVideoInputFrame*, IDeckLinkAudioInputPacket*);
74
75 private:
76     demux_t *p_demux_;
77 };
78
79 HRESULT DeckLinkCaptureDelegate::VideoInputFormatChanged(BMDVideoInputFormatChangedEvents events, IDeckLinkDisplayMode *mode, BMDDetectedVideoInputFormatFlags)
80 {
81     msg_Dbg( p_demux_, "Video input format changed" );    
82     return S_OK;
83 }
84
85 HRESULT DeckLinkCaptureDelegate::VideoInputFrameArrived(IDeckLinkVideoInputFrame* videoFrame, IDeckLinkAudioInputPacket* audioFrame)
86 {
87     demux_sys_t *p_sys = p_demux_->p_sys;
88
89     if(videoFrame)
90     {
91         if(videoFrame->GetFlags() & bmdFrameHasNoInputSource)
92         {
93             msg_Warn( p_demux_, "No input signal detected" );
94             return S_OK;
95         }
96
97         block_t *p_frame;
98         p_frame = block_New( p_demux_, 720 * 576 * 3 );
99         if( !p_frame )
100         {
101             msg_Err( p_demux_, "Could not allocate memory for frame" );
102             return S_OK;
103         }
104
105         void *frame_bytes;
106         videoFrame->GetBytes( &frame_bytes );
107         memcpy( p_frame->p_buffer, frame_bytes, 720 * 576 * 3 );
108
109         BMDTimeValue stream_time, frame_duration;
110         videoFrame->GetStreamTime( &stream_time, &frame_duration, 1000000 );
111         p_frame->i_pts = stream_time + frame_duration;  // FIXME: hack to avoid i_pts=0?
112
113         vlc_mutex_lock( &p_sys->frame_lock );
114         p_sys->p_frame = p_frame;  // FIXME: leak
115         vlc_cond_signal( &p_sys->has_frame );
116         vlc_mutex_unlock( &p_sys->frame_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->frame_lock );
142     vlc_cond_init( &p_sys->has_frame );
143     p_sys->p_frame = NULL;
144
145     IDeckLinkIterator *decklink_iterator = CreateDeckLinkIteratorInstance();
146     if( !decklink_iterator )
147     {
148         msg_Err( p_demux, "DeckLink drivers not found." );
149         // FIXME: Leak here and several other error paths.
150         return VLC_EGENERIC;
151     }
152
153     HRESULT result;
154     result = decklink_iterator->Next( &p_sys->p_card );
155
156     if( result != S_OK )
157     {
158         msg_Err( p_demux, "No DeckLink PCI cards found" );
159         return VLC_EGENERIC;
160     }
161
162     if( p_sys->p_card->QueryInterface(IID_IDeckLinkInput, (void**)&p_sys->p_input) != S_OK )
163     {
164         msg_Err( p_demux, "Card has no inputs" );
165         return VLC_EGENERIC;
166     }
167
168     p_sys->p_delegate = new DeckLinkCaptureDelegate( p_demux );
169     p_sys->p_input->SetCallback( p_sys->p_delegate );
170
171     result = p_sys->p_input->EnableVideoInput(bmdModePAL, bmdFormat8BitYUV, 0);
172     if( result != S_OK )
173     {
174         msg_Err( p_demux, "Failed to enable video input" );
175         return VLC_EGENERIC;
176     }
177
178     // FIXME: add audio
179     result = p_sys->p_input->StartStreams();
180     if( result != S_OK )
181     {
182         msg_Err( p_demux, "Failed to start streams" );
183         return VLC_EGENERIC;
184     }
185
186     /*eDeclare elementary streams */
187     es_format_t fmt;
188     es_format_Init( &fmt, VIDEO_ES, VLC_CODEC_UYVY );
189     fmt.video.i_width = 720;
190     fmt.video.i_height = 576;
191     fmt.video.i_sar_num = 16 * fmt.video.i_height;
192     fmt.video.i_sar_den = 9 * fmt.video.i_width;
193     fmt.video.i_frame_rate = 25;
194     fmt.video.i_frame_rate_base = 1;
195
196     msg_Dbg( p_demux, "added new video es %4.4s %dx%d",
197              (char*)&fmt.i_codec, fmt.video.i_width, fmt.video.i_height );
198     p_sys->p_es = es_out_Add( p_demux->out, &fmt );
199
200     /* Update default_pts to a suitable value for access */
201     var_Create( p_demux, "sdi-caching", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
202
203     return VLC_SUCCESS;
204 }
205
206 static void Close( vlc_object_t *p_this )
207 {
208     demux_t     *p_demux = (demux_t *)p_this;
209     demux_sys_t *p_sys   = p_demux->p_sys;
210
211     free( p_sys );
212 }
213
214 static int Control( demux_t *p_demux, int i_query, va_list args )
215 {
216     bool *pb;
217     int64_t    *pi64;
218
219     switch( i_query )
220     {
221         /* Special for access_demux */
222         case DEMUX_CAN_PAUSE:
223         case DEMUX_CAN_SEEK:
224         case DEMUX_CAN_CONTROL_PACE:
225             pb = (bool*)va_arg( args, bool * );
226             *pb = false;
227             return VLC_SUCCESS;
228
229         case DEMUX_GET_PTS_DELAY:
230             pi64 = (int64_t*)va_arg( args, int64_t * );
231             *pi64 = var_GetInteger( p_demux, "sdi-caching" ) * 1000;
232             return VLC_SUCCESS;
233
234         case DEMUX_GET_TIME:
235             pi64 = (int64_t*)va_arg( args, int64_t * );
236             *pi64 = mdate();  // FIXME
237             return VLC_SUCCESS;
238
239         /* TODO implement others */
240         default:
241             return VLC_EGENERIC;
242     }
243
244     return VLC_EGENERIC;
245 }
246
247 static int Demux( demux_t *p_demux )
248 {
249     demux_sys_t *p_sys = p_demux->p_sys;
250     block_t *p_block;
251
252     vlc_mutex_lock( &p_sys->frame_lock );
253
254     while( !p_sys->p_frame )
255         vlc_cond_wait( &p_sys->has_frame, &p_sys->frame_lock );
256
257     p_block = p_sys->p_frame;
258     p_sys->p_frame = NULL;
259
260     vlc_mutex_unlock( &p_sys->frame_lock );
261
262     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
263     es_out_Send( p_demux->out, p_sys->p_es, p_block );
264
265     return 1;
266 }
267