]> git.sesse.net Git - vlc/blob - modules/access/qtcapture.m
qtcapture: New access_demux module (QTKit based) to capture video from your iSight...
[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 }
70 - (id)init;
71 - (void)outputVideoFrame:(CVImageBufferRef)videoFrame withSampleBuffer:(QTSampleBuffer *)sampleBuffer fromConnection:(QTCaptureConnection *)connection;
72 - (BOOL)copyCurrentFrameToBuffer:(void *)buffer;
73 @end
74
75 /* Apple sample code */
76 @implementation VLCDecompressedVideoOutput : QTCaptureDecompressedVideoOutput
77 - (id)init
78 {
79    if( self = [super init] )
80    {
81        currentImageBuffer = nil;
82    }
83    return self;
84 }
85 - (void)dealloc
86 {
87    @synchronized (self) {
88        CVBufferRelease(currentImageBuffer);
89        currentImageBuffer = nil;
90    }
91    [super dealloc];
92 }
93
94 - (void)outputVideoFrame:(CVImageBufferRef)videoFrame withSampleBuffer:(QTSampleBuffer *)sampleBuffer fromConnection:(QTCaptureConnection *)connection
95 {
96    // Store the latest frame
97    // This must be done in a @synchronized block because this delegate method is not called on the main thread
98    CVImageBufferRef imageBufferToRelease;
99
100    CVBufferRetain(videoFrame);
101
102    @synchronized (self) {
103        imageBufferToRelease = currentImageBuffer;
104        currentImageBuffer = videoFrame;
105    }
106    CVBufferRelease(imageBufferToRelease);
107 }
108
109 - (BOOL)copyCurrentFrameToBuffer:(void *)buffer
110 {
111    CVImageBufferRef imageBuffer;
112
113    @synchronized (self) {
114        if(!currentImageBuffer) return NO;
115        imageBuffer = CVBufferRetain(currentImageBuffer);
116    }
117
118    CVPixelBufferLockBaseAddress(imageBuffer, 0);
119    void * pixels = CVPixelBufferGetBaseAddress(imageBuffer);
120    memcpy( buffer, pixels, CVPixelBufferGetBytesPerRow(imageBuffer) * CVPixelBufferGetHeight(imageBuffer) );
121    CVPixelBufferUnlockBaseAddress(imageBuffer, 0);
122
123    CVBufferRelease(imageBuffer);
124
125    return YES;
126 }
127
128 @end
129
130 struct demux_sys_t {
131    QTCaptureSession * session;
132    VLCDecompressedVideoOutput * output;
133    int height, width;
134    es_out_id_t * p_es_video;
135 };
136
137
138 int qtchroma_to_fourcc( int i_qt )
139 {
140     static struct
141     {
142         unsigned int i_qt;
143         int i_fourcc;
144     } qtchroma_to_fourcc[] =
145     {
146         /* Raw data types */
147         { k422YpCbCr8CodecType,    VLC_FOURCC('U','Y','V','Y') },
148         { 0, 0 }
149     };
150     int i;
151     for( i = 0; qtchroma_to_fourcc[i].i_qt; i++ )
152     {
153         if( qtchroma_to_fourcc[i].i_qt == i_qt )
154             return qtchroma_to_fourcc[i].i_fourcc;
155     }
156     return 0;
157 }
158
159 /*****************************************************************************
160 * Open:
161 *****************************************************************************/
162 static int Open( vlc_object_t *p_this )
163 {
164     demux_t     *p_demux = (demux_t*)p_this;
165     demux_sys_t *p_sys = NULL;
166     es_format_t fmt;
167     int i;
168     int i_width;
169     int i_height;
170     int i_aspect;
171     int result = 0;
172
173     /* Set up p_demux */
174     p_demux->pf_demux = Demux;
175     p_demux->pf_control = Control;
176     p_demux->info.i_update = 0;
177     p_demux->info.i_title = 0;
178     p_demux->info.i_seekpoint = 0;
179
180     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
181
182     msg_Dbg( p_demux, "QTCapture Probed" );
183
184     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
185     if( !p_sys ) return VLC_ENOMEM;
186
187     memset( p_sys, 0, sizeof( demux_sys_t ) );
188     memset( &fmt, 0, sizeof( es_format_t ) );
189
190     QTCaptureDeviceInput * input = nil;
191     QTCaptureSession * session = nil;
192     VLCDecompressedVideoOutput * output = nil;
193
194     QTCaptureDevice * device = [QTCaptureDevice defaultInputDeviceWithMediaType: QTMediaTypeVideo];
195     if( !device )
196     {
197         msg_Err( p_demux, "Can't open any Video device" );
198         goto error;
199     }
200
201     if( ![device open: nil  /* FIXME */] )
202     {
203         msg_Err( p_demux, "Can't open any Video device" );
204         goto error;
205     }
206
207     input = [[QTCaptureDeviceInput alloc] initWithDevice: device];
208     if( !device )
209     {
210         msg_Err( p_demux, "Can't create a capture session" );
211         goto error;
212     }
213
214     output = [[VLCDecompressedVideoOutput alloc] init];
215
216     session = [[QTCaptureSession alloc] init];
217
218     bool ret = [session addInput:input error:nil  /* FIXME */];
219     if( !ret )
220     {
221         msg_Err( p_demux, "Can't add the video device as input" );
222         goto error;
223     }
224
225     ret = [session addOutput:output error:nil  /* FIXME */];
226     if( !ret )
227     {
228         msg_Err( p_demux, "Can't get any output output" );
229         goto error;
230     }
231
232     [session startRunning];
233
234     int qtchroma = [[[device formatDescriptions] objectAtIndex: 0] formatType]; /* FIXME */
235     int chroma = qtchroma_to_fourcc( qtchroma );
236     if( !chroma )
237     {
238         msg_Err( p_demux, "Unknown qt chroma %4.4s provided by camera", (char*)&qtchroma );
239         goto error;
240     }
241
242     es_format_Init( &fmt, VIDEO_ES, chroma );
243
244     NSSize size = [[device attributeForKey:QTFormatDescriptionVideoEncodedPixelsSizeAttribute] sizeValue];
245     p_sys->width = fmt.video.i_width = 640;/* size.width; FIXME */
246     p_sys->height = fmt.video.i_height = 480;/* size.height; FIXME */
247
248     msg_Err( p_demux, "added new video es %4.4s %dx%d",
249             (char*)&fmt.i_codec, fmt.video.i_width, fmt.video.i_height );
250
251     p_sys->p_es_video = es_out_Add( p_demux->out, &fmt );
252
253     p_sys->output = [output retain];
254     p_sys->session = [session retain];
255
256     [input release];
257     [output release];
258     [session release];
259     [pool release];
260
261     msg_Dbg( p_demux, "QTCapture: We have a video device ready!" );
262
263     return VLC_SUCCESS;
264 error:
265     [input release];
266     [session release];
267     [input release];
268     [output release];
269     [pool release];
270
271     free( p_sys );
272
273     return VLC_EGENERIC;
274 }
275
276 /*****************************************************************************
277 * Close:
278 *****************************************************************************/
279 static void Close( vlc_object_t *p_this )
280 {
281     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
282
283     demux_t     *p_demux = (demux_t*)p_this;
284     demux_sys_t *p_sys = p_demux->p_sys;
285     [p_sys->output release];
286     [p_sys->session release];
287     free( p_sys );
288
289     [pool release];
290 }
291
292
293 /*****************************************************************************
294 * Demux:
295 *****************************************************************************/
296 static int Demux( demux_t *p_demux )
297 {
298     demux_sys_t *p_sys = p_demux->p_sys;
299     block_t *p_block;
300
301     p_block = block_New( p_demux, p_sys->width *
302                             p_sys->height * 2 /* FIXME */ );
303     if( !p_block )
304     {
305         msg_Err( p_demux, "cannot get block" );
306         return 0;
307     }
308
309     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
310
311     if( ![p_sys->output copyCurrentFrameToBuffer: p_block->p_buffer] )
312     {
313         /* Nothing to display yet, just forget */
314         block_Release( p_block );
315         [pool release];
316         return 1;
317     }
318
319     p_block->i_pts = mdate(); /* FIXME */
320
321     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
322     es_out_Send( p_demux->out, p_sys->p_es_video, p_block );
323
324     [pool release];
325     return 1;
326 }
327
328 /*****************************************************************************
329 * Control:
330 *****************************************************************************/
331 static int Control( demux_t *p_demux, int i_query, va_list args )
332 {
333     bool *pb;
334     int64_t    *pi64;
335
336     switch( i_query )
337     {
338         /* Special for access_demux */
339         case DEMUX_CAN_PAUSE:
340         case DEMUX_CAN_SEEK:
341         case DEMUX_SET_PAUSE_STATE:
342         case DEMUX_CAN_CONTROL_PACE:
343            pb = (bool*)va_arg( args, bool * );
344            *pb = false;
345            return VLC_SUCCESS;
346
347         case DEMUX_GET_PTS_DELAY:
348            pi64 = (int64_t*)va_arg( args, int64_t * );
349            *pi64 = (int64_t)DEFAULT_PTS_DELAY;
350            return VLC_SUCCESS;
351
352         case DEMUX_GET_TIME:
353            pi64 = (int64_t*)va_arg( args, int64_t * );
354            *pi64 = mdate();
355            return VLC_SUCCESS;
356
357         /* TODO implement others */
358         default:
359            return VLC_EGENERIC;
360     }
361     return VLC_EGENERIC;
362 }