]> git.sesse.net Git - vlc/blob - modules/access/qtcapture.m
qtcapture: Fix a warning.
[vlc] / modules / access / qtcapture.m
1 /*****************************************************************************
2 * qtcapture.m: qtkit (Mac OS X) based capture module
3 *****************************************************************************
4 * Copyright (C) 2008 the VideoLAN team
5 *
6 * Authors: Pierre d'Herbemont <pdherbemont@videolan.org>
7 *
8 *****************************************************************************
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation;
12 * version 2 of the License.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22 *
23 *****************************************************************************/
24
25 /*****************************************************************************
26 * Preamble
27 *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc/vlc.h>
34 #include <vlc_plugin.h>
35 #include <vlc_input.h>
36 #include <vlc_vout.h>
37 #include <vlc_demux.h>
38
39 #import <QTKit/QTKit.h>
40
41 /*****************************************************************************
42 * Local prototypes
43 *****************************************************************************/
44 static int Open( vlc_object_t *p_this );
45 static void Close( vlc_object_t *p_this );
46 static int Demux( demux_t *p_demux );
47 static int Control( demux_t *, int, va_list );
48
49 /*****************************************************************************
50 * Module descriptor
51 *****************************************************************************/
52 vlc_module_begin();
53    set_shortname( N_("Quicktime Capture") );
54    set_description( N_("Quicktime Capture") );
55    set_category( CAT_INPUT );
56    set_subcategory( SUBCAT_INPUT_ACCESS );
57    add_shortcut( "qtcapture" );
58    set_capability( "access_demux", 10 );
59    set_callbacks( Open, Close );
60 vlc_module_end();
61
62
63 /*****************************************************************************
64 * QTKit Bridge
65 *****************************************************************************/
66 @interface VLCDecompressedVideoOutput : QTCaptureDecompressedVideoOutput
67 {
68     CVImageBufferRef currentImageBuffer;
69     mtime_t currentPts;
70 }
71 - (id)init;
72 - (void)outputVideoFrame:(CVImageBufferRef)videoFrame withSampleBuffer:(QTSampleBuffer *)sampleBuffer fromConnection:(QTCaptureConnection *)connection;
73 - (mtime_t)copyCurrentFrameToBuffer:(void *)buffer;
74 @end
75
76 /* Apple sample code */
77 @implementation VLCDecompressedVideoOutput : QTCaptureDecompressedVideoOutput
78 - (id)init
79 {
80     if( self = [super init] )
81     {
82         currentImageBuffer = nil;
83         currentPts = 0;
84     }
85     return self;
86 }
87 - (void)dealloc
88 {
89     @synchronized (self) {
90         CVBufferRelease(currentImageBuffer);
91         currentImageBuffer = nil;
92     }
93     [super dealloc];
94 }
95
96 - (void)outputVideoFrame:(CVImageBufferRef)videoFrame withSampleBuffer:(QTSampleBuffer *)sampleBuffer fromConnection:(QTCaptureConnection *)connection
97 {
98     // Store the latest frame
99     // This must be done in a @synchronized block because this delegate method is not called on the main thread
100     CVImageBufferRef imageBufferToRelease;
101
102     CVBufferRetain(videoFrame);
103
104     @synchronized (self) {
105         imageBufferToRelease = currentImageBuffer;
106         currentImageBuffer = videoFrame;
107         /* FIXME: is it the right PTS? */
108         currentPts = [sampleBuffer presentationTime].timeValue * 1000;
109     }
110     CVBufferRelease(imageBufferToRelease);
111 }
112
113 - (mtime_t)copyCurrentFrameToBuffer:(void *)buffer
114 {
115     CVImageBufferRef imageBuffer;
116     mtime_t pts;
117     @synchronized (self) {
118         if(!currentImageBuffer) return 0;
119         imageBuffer = CVBufferRetain(currentImageBuffer);
120         pts = currentPts;
121     }
122
123     CVPixelBufferLockBaseAddress(imageBuffer, 0);
124     void * pixels = CVPixelBufferGetBaseAddress(imageBuffer);
125     memcpy( buffer, pixels, CVPixelBufferGetBytesPerRow(imageBuffer) * CVPixelBufferGetHeight(imageBuffer) );
126     CVPixelBufferUnlockBaseAddress(imageBuffer, 0);
127
128     CVBufferRelease(imageBuffer);
129
130     return currentPts;
131 }
132
133 @end
134
135 /*****************************************************************************
136 * Struct
137 *****************************************************************************/
138
139 struct demux_sys_t {
140    QTCaptureSession * session;
141    VLCDecompressedVideoOutput * output;
142    int height, width;
143    es_out_id_t * p_es_video;
144 };
145
146
147 /*****************************************************************************
148 * qtchroma_to_fourcc
149 *****************************************************************************/
150 static int qtchroma_to_fourcc( int i_qt )
151 {
152     static struct
153     {
154         unsigned int i_qt;
155         int i_fourcc;
156     } qtchroma_to_fourcc[] =
157     {
158         /* Raw data types */
159         { k422YpCbCr8CodecType,    VLC_FOURCC('U','Y','V','Y') },
160         { 0, 0 }
161     };
162     int i;
163     for( i = 0; qtchroma_to_fourcc[i].i_qt; i++ )
164     {
165         if( qtchroma_to_fourcc[i].i_qt == i_qt )
166             return qtchroma_to_fourcc[i].i_fourcc;
167     }
168     return 0;
169 }
170
171 /*****************************************************************************
172 * Open:
173 *****************************************************************************/
174 static int Open( vlc_object_t *p_this )
175 {
176     demux_t     *p_demux = (demux_t*)p_this;
177     demux_sys_t *p_sys = NULL;
178     es_format_t fmt;
179     int i;
180     int i_width;
181     int i_height;
182     int i_aspect;
183     int result = 0;
184
185     /* Set up p_demux */
186     p_demux->pf_demux = Demux;
187     p_demux->pf_control = Control;
188     p_demux->info.i_update = 0;
189     p_demux->info.i_title = 0;
190     p_demux->info.i_seekpoint = 0;
191
192     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
193
194     msg_Dbg( p_demux, "QTCapture Probed" );
195
196     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
197     if( !p_sys ) return VLC_ENOMEM;
198
199     memset( p_sys, 0, sizeof( demux_sys_t ) );
200     memset( &fmt, 0, sizeof( es_format_t ) );
201
202     QTCaptureDeviceInput * input = nil;
203     QTCaptureSession * session = nil;
204     VLCDecompressedVideoOutput * output = nil;
205
206     QTCaptureDevice * device = [QTCaptureDevice defaultInputDeviceWithMediaType: QTMediaTypeVideo];
207     if( !device )
208     {
209         msg_Err( p_demux, "Can't open any Video device" );
210         goto error;
211     }
212
213     if( ![device open: nil  /* FIXME */] )
214     {
215         msg_Err( p_demux, "Can't open any Video device" );
216         goto error;
217     }
218
219     input = [[QTCaptureDeviceInput alloc] initWithDevice: device];
220     if( !device )
221     {
222         msg_Err( p_demux, "Can't create a capture session" );
223         goto error;
224     }
225
226     output = [[VLCDecompressedVideoOutput alloc] init];
227
228     session = [[QTCaptureSession alloc] init];
229
230     bool ret = [session addInput:input error:nil  /* FIXME */];
231     if( !ret )
232     {
233         msg_Err( p_demux, "Can't add the video device as input" );
234         goto error;
235     }
236
237     ret = [session addOutput:output error:nil  /* FIXME */];
238     if( !ret )
239     {
240         msg_Err( p_demux, "Can't get any output output" );
241         goto error;
242     }
243
244     [session startRunning];
245
246     int qtchroma = [[[device formatDescriptions] objectAtIndex: 0] formatType]; /* FIXME */
247     int chroma = qtchroma_to_fourcc( qtchroma );
248     if( !chroma )
249     {
250         msg_Err( p_demux, "Unknown qt chroma %4.4s provided by camera", (char*)&qtchroma );
251         goto error;
252     }
253
254     es_format_Init( &fmt, VIDEO_ES, chroma );
255
256     NSSize size = [[device attributeForKey:QTFormatDescriptionVideoEncodedPixelsSizeAttribute] sizeValue];
257     p_sys->width = fmt.video.i_width = 640;/* size.width; FIXME */
258     p_sys->height = fmt.video.i_height = 480;/* size.height; FIXME */
259
260     msg_Dbg( p_demux, "added new video es %4.4s %dx%d",
261             (char*)&fmt.i_codec, fmt.video.i_width, fmt.video.i_height );
262
263     p_sys->p_es_video = es_out_Add( p_demux->out, &fmt );
264
265     p_sys->output = [output retain];
266     p_sys->session = [session retain];
267
268     [input release];
269     [output release];
270     [session release];
271     [pool release];
272
273     msg_Dbg( p_demux, "QTCapture: We have a video device ready!" );
274
275     return VLC_SUCCESS;
276 error:
277     [input release];
278     [session release];
279     [input release];
280     [output release];
281     [pool release];
282
283     free( p_sys );
284
285     return VLC_EGENERIC;
286 }
287
288 /*****************************************************************************
289 * Close:
290 *****************************************************************************/
291 static void Close( vlc_object_t *p_this )
292 {
293     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
294
295     demux_t     *p_demux = (demux_t*)p_this;
296     demux_sys_t *p_sys = p_demux->p_sys;
297     [p_sys->output release];
298     [p_sys->session release];
299     free( p_sys );
300
301     [pool release];
302 }
303
304
305 /*****************************************************************************
306 * Demux:
307 *****************************************************************************/
308 static int Demux( demux_t *p_demux )
309 {
310     demux_sys_t *p_sys = p_demux->p_sys;
311     block_t *p_block;
312
313     p_block = block_New( p_demux, p_sys->width *
314                             p_sys->height * 2 /* FIXME */ );
315     if( !p_block )
316     {
317         msg_Err( p_demux, "cannot get block" );
318         return 0;
319     }
320
321     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
322
323     p_block->i_pts = [p_sys->output copyCurrentFrameToBuffer: p_block->p_buffer];
324
325     if( !p_block->i_pts )
326     {
327         /* Nothing to display yet, just forget */
328         block_Release( p_block );
329         [pool release];
330         return 1;
331     }
332
333     p_block->i_pts += mdate();
334
335     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
336     es_out_Send( p_demux->out, p_sys->p_es_video, p_block );
337
338     [pool release];
339     return 1;
340 }
341
342 /*****************************************************************************
343 * Control:
344 *****************************************************************************/
345 static int Control( demux_t *p_demux, int i_query, va_list args )
346 {
347     bool *pb;
348     int64_t    *pi64;
349
350     switch( i_query )
351     {
352         /* Special for access_demux */
353         case DEMUX_CAN_PAUSE:
354         case DEMUX_CAN_SEEK:
355         case DEMUX_SET_PAUSE_STATE:
356         case DEMUX_CAN_CONTROL_PACE:
357            pb = (bool*)va_arg( args, bool * );
358            *pb = false;
359            return VLC_SUCCESS;
360
361         case DEMUX_GET_PTS_DELAY:
362            pi64 = (int64_t*)va_arg( args, int64_t * );
363            *pi64 = (int64_t)DEFAULT_PTS_DELAY;
364            return VLC_SUCCESS;
365
366         case DEMUX_GET_TIME:
367            pi64 = (int64_t*)va_arg( args, int64_t * );
368            *pi64 = mdate();
369            return VLC_SUCCESS;
370
371         /* TODO implement others */
372         default:
373            return VLC_EGENERIC;
374     }
375     return VLC_EGENERIC;
376 }