]> git.sesse.net Git - vlc/blob - modules/access/sdi.cpp
Change default aspect to 16:9.
[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         msg_Dbg( p_demux_, "Received a frame" );
98
99         block_t *p_frame;
100         p_frame = block_New( p_demux_, 720 * 576 * 3 );
101         if( !p_frame )
102         {
103             msg_Err( p_demux_, "Could not allocate memory for frame" );
104             return S_OK;
105         }
106
107         void *frame_bytes;
108         videoFrame->GetBytes( &frame_bytes );
109         memcpy( p_frame->p_buffer, frame_bytes, 720 * 576 * 3 );
110
111         BMDTimeValue stream_time, frame_duration;
112         videoFrame->GetStreamTime( &stream_time, &frame_duration, 1000000 );
113         p_frame->i_pts = stream_time;
114
115         vlc_mutex_lock( &p_sys->frame_lock );
116         p_sys->p_frame = p_frame;  // FIXME: leak
117         vlc_cond_signal( &p_sys->has_frame );
118         vlc_mutex_unlock( &p_sys->frame_lock );
119     }
120
121     return S_OK;
122 }
123
124 static int Open( vlc_object_t *p_this )
125 {
126     demux_t     *p_demux = (demux_t*)p_this;
127     demux_sys_t *p_sys;
128
129     /* Only when selected */
130     if( *p_demux->psz_access == '\0' )
131         return VLC_EGENERIC;
132
133     /* Set up p_demux */
134     p_demux->pf_demux = Demux;
135     p_demux->pf_control = Control;
136     p_demux->info.i_update = 0;
137     p_demux->info.i_title = 0;
138     p_demux->info.i_seekpoint = 0;
139     p_demux->p_sys = p_sys = (demux_sys_t*)calloc( 1, sizeof( demux_sys_t ) );
140     if( !p_sys )
141         return VLC_ENOMEM;
142
143     vlc_mutex_init( &p_sys->frame_lock );
144     vlc_cond_init( &p_sys->has_frame );
145     p_sys->p_frame = NULL;
146
147     IDeckLinkIterator *decklink_iterator = CreateDeckLinkIteratorInstance();
148     if( !decklink_iterator )
149     {
150         msg_Err( p_demux, "DeckLink drivers not found." );
151         // FIXME: Leak here and several other error paths.
152         return VLC_EGENERIC;
153     }
154
155     HRESULT result;
156     result = decklink_iterator->Next( &p_sys->p_card );
157
158     if( result != S_OK )
159     {
160         msg_Err( p_demux, "No DeckLink PCI cards found" );
161         return VLC_EGENERIC;
162     }
163
164     if( p_sys->p_card->QueryInterface(IID_IDeckLinkInput, (void**)&p_sys->p_input) != S_OK )
165     {
166         msg_Err( p_demux, "Card has no inputs" );
167         return VLC_EGENERIC;
168     }
169
170     p_sys->p_delegate = new DeckLinkCaptureDelegate( p_demux );
171     p_sys->p_input->SetCallback( p_sys->p_delegate );
172
173     result = p_sys->p_input->EnableVideoInput(bmdModePAL, bmdFormat8BitYUV, 0);
174     if( result != S_OK )
175     {
176         msg_Err( p_demux, "Failed to enable video input" );
177         return VLC_EGENERIC;
178     }
179
180     // FIXME: add audio
181     result = p_sys->p_input->StartStreams();
182     if( result != S_OK )
183     {
184         msg_Err( p_demux, "Failed to start streams" );
185         return VLC_EGENERIC;
186     }
187
188     /*eDeclare elementary streams */
189     es_format_t fmt;
190     es_format_Init( &fmt, VIDEO_ES, VLC_CODEC_UYVY );
191     fmt.video.i_width = 720;
192     fmt.video.i_height = 576;
193     fmt.video.i_sar_num = 16 * fmt.video.i_height;
194     fmt.video.i_sar_den = 9 * fmt.video.i_width;
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     msg_Dbg( p_demux, "Sending frame" ); 
263     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
264     es_out_Send( p_demux->out, p_sys->p_es, p_block );
265
266     return 1;
267 }
268