]> git.sesse.net Git - vlc/blobdiff - modules/access/qtcapture.m
posix: drop support for non-UTF-8 operating systems
[vlc] / modules / access / qtcapture.m
index 1a2ce64be9a3e38fab9983f04434f840355d5aa1..ce41a0d6e72d22b0da849a033e8da9008d7c7db0 100644 (file)
@@ -1,30 +1,29 @@
 /*****************************************************************************
-* qtcapture.m: qtkit (Mac OS X) based capture module
-*****************************************************************************
-* Copyright (C) 2008-2011 the VideoLAN team
-*
-* Authors: Pierre d'Herbemont <pdherbemont@videolan.org>
-*
-*****************************************************************************
-* This library is free software; you can redistribute it and/or
-* modify it under the terms of the GNU Lesser General Public
-* License as published by the Free Software Foundation;
-* version 2 of the License.
-*
-* This library is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this library; if not, write to the Free Software
-* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-*
-*****************************************************************************/
+ * qtcapture.m: qtkit (Mac OS X) based capture module
+ *****************************************************************************
+ * Copyright © 2008-2011 VLC authors and VideoLAN
+ *
+ * Authors: Pierre d'Herbemont <pdherbemont@videolan.org>
+ *
+ ****************************************************************************
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ *****************************************************************************/
 
 /*****************************************************************************
-* Preamble
-*****************************************************************************/
+ * Preamble
+ *****************************************************************************/
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
@@ -80,6 +79,7 @@ vlc_module_end ()
     CVImageBufferRef currentImageBuffer;
     mtime_t currentPts;
     mtime_t previousPts;
+    long timeScale;
 }
 - (id)init;
 - (void)outputVideoFrame:(CVImageBufferRef)videoFrame withSampleBuffer:(QTSampleBuffer *)sampleBuffer fromConnection:(QTCaptureConnection *)connection;
@@ -95,6 +95,7 @@ vlc_module_end ()
         currentImageBuffer = nil;
         currentPts = 0;
         previousPts = 0;
+        timeScale = 0;
     }
     return self;
 }
@@ -108,6 +109,11 @@ vlc_module_end ()
     [super dealloc];
 }
 
+- (long)timeScale
+{
+    return timeScale;
+}
+
 - (void)outputVideoFrame:(CVImageBufferRef)videoFrame withSampleBuffer:(QTSampleBuffer *)sampleBuffer fromConnection:(QTCaptureConnection *)connection
 {
     // Store the latest frame
@@ -120,7 +126,9 @@ vlc_module_end ()
     {
         imageBufferToRelease = currentImageBuffer;
         currentImageBuffer = videoFrame;
-        currentPts = (mtime_t)(1000000L / [sampleBuffer presentationTime].timeScale * [sampleBuffer presentationTime].timeValue);
+        QTTime timeStamp = [sampleBuffer presentationTime];
+        timeScale = timeStamp.timeScale;
+        currentPts = (mtime_t)(1000000L / timeScale * timeStamp.timeValue);
 
         /* Try to use hosttime of the sample if available, because iSight Pts seems broken */
         NSNumber *hosttime = (NSNumber *)[sampleBuffer attributeForKey:QTSampleBufferHostTimeAttribute];
@@ -133,7 +141,8 @@ vlc_module_end ()
 {
     CVImageBufferRef imageBuffer;
     mtime_t pts;
-       void * pixels;
+
+void * pixels;
 
     if(!currentImageBuffer || currentPts == previousPts )
         return 0;
@@ -149,14 +158,14 @@ vlc_module_end ()
                 memcpy( buffer, pixels, CVPixelBufferGetBytesPerRow(imageBuffer) * CVPixelBufferGetHeight(imageBuffer));
             CVPixelBufferUnlockBaseAddress(imageBuffer, 0);
         }
-            
+
     }
     CVBufferRelease(imageBuffer);
 
-       if(pixels)
-               return currentPts;
-       else
-               return 0;
+    if(pixels)
+        return currentPts;
+    else
+        return 0;
 }
 
 @end
@@ -171,6 +180,8 @@ struct demux_sys_t {
     VLCDecompressedVideoOutput * output;
     int height, width;
     es_out_id_t * p_es_video;
+    BOOL b_es_setup;
+    es_format_t fmt;
 };
 
 
@@ -207,7 +218,6 @@ static int Open( vlc_object_t *p_this )
 {
     demux_t     *p_demux = (demux_t*)p_this;
     demux_sys_t *p_sys = NULL;
-    es_format_t fmt;
     int i;
     int i_width;
     int i_height;
@@ -246,17 +256,18 @@ static int Open( vlc_object_t *p_this )
 
         goto error;
     }
-    int ivideo;
-    for(ivideo = 0; ivideo < [myVideoDevices count]; ivideo++){
+    NSUInteger ivideo;
+    NSUInteger deviceCount = [myVideoDevices count];
+    for(ivideo = 0; ivideo < deviceCount; ivideo++){
         QTCaptureDevice *qtk_device;
         qtk_device = [myVideoDevices objectAtIndex:ivideo];
-        msg_Dbg( p_demux, "qtcapture %d/%lu %s %s", ivideo, [myVideoDevices count], [[qtk_device localizedDisplayName] UTF8String], [[qtk_device uniqueID] UTF8String]);
+        msg_Dbg( p_demux, "qtcapture %lu/%lu %s %s", ivideo, deviceCount, [[qtk_device localizedDisplayName] UTF8String], [[qtk_device uniqueID] UTF8String]);
         if([[[qtk_device uniqueID]stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]] isEqualToString:qtk_currdevice_uid]){
             break;
         }
     }
 
-    memset( &fmt, 0, sizeof( es_format_t ) );
+    memset( &p_sys->fmt, 0, sizeof( es_format_t ) );
 
     QTCaptureDeviceInput * input = nil;
     NSError *o_returnedError;
@@ -302,7 +313,8 @@ static int Open( vlc_object_t *p_this )
     /* Get the formats */
     NSArray *format_array = [p_sys->device formatDescriptions];
     QTFormatDescription* camera_format = NULL;
-    for( int k = 0; k < [format_array count]; k++ )
+    NSUInteger formatCount = [format_array count];
+    for( NSUInteger k = 0; k < formatCount; k++ )
     {
         camera_format = [format_array objectAtIndex: k];
 
@@ -317,7 +329,7 @@ static int Open( vlc_object_t *p_this )
     int chroma = VLC_CODEC_UYVY;
 
     /* Now we can init */
-    es_format_Init( &fmt, VIDEO_ES, chroma );
+    es_format_Init( &p_sys->fmt, VIDEO_ES, chroma );
 
     NSSize encoded_size = [[camera_format attributeForKey:QTFormatDescriptionVideoEncodedPixelsSizeAttribute] sizeValue];
     NSSize display_size = [[camera_format attributeForKey:QTFormatDescriptionVideoCleanApertureDisplaySizeAttribute] sizeValue];
@@ -328,12 +340,13 @@ static int Open( vlc_object_t *p_this )
     par_size.height = display_size.height = encoded_size.height
         = var_InheritInteger (p_this, "qtcapture-height");
 
-    fmt.video.i_width = p_sys->width = encoded_size.width;
-    fmt.video.i_height = p_sys->height = encoded_size.height;
+    p_sys->fmt.video.i_width = p_sys->width = encoded_size.width;
+    p_sys->fmt.video.i_height = p_sys->height = encoded_size.height;
+    p_sys->fmt.video.i_frame_rate = 25.0; // cave: check with setMinimumVideoFrameInterval (see below)
     if( par_size.width != encoded_size.width )
     {
-        fmt.video.i_sar_num = (int64_t)encoded_size.height * par_size.width / encoded_size.width;
-        fmt.video.i_sar_den = encoded_size.width;
+        p_sys->fmt.video.i_sar_num = (int64_t)encoded_size.height * par_size.width / encoded_size.width;
+        p_sys->fmt.video.i_sar_den = encoded_size.width;
     }
 
     msg_Dbg(p_demux, "encoded_size %i %i", (int)encoded_size.width, (int)encoded_size.height );
@@ -346,6 +359,8 @@ static int Open( vlc_object_t *p_this )
         [NSNumber numberWithInt: p_sys->width], kCVPixelBufferWidthKey,
         [NSNumber numberWithBool:YES], (id)kCVPixelBufferOpenGLCompatibilityKey,
         nil]];
+    [p_sys->output setAutomaticallyDropsLateVideoFrames:YES];
+    [p_sys->output setMinimumVideoFrameInterval: (1/25)]; // 25 fps
 
     p_sys->session = [[QTCaptureSession alloc] init];
 
@@ -365,11 +380,6 @@ static int Open( vlc_object_t *p_this )
 
     [p_sys->session startRunning];
 
-    msg_Dbg( p_demux, "added new video es %4.4s %dx%d",
-            (char*)&fmt.i_codec, fmt.video.i_width, fmt.video.i_height );
-
-    p_sys->p_es_video = es_out_Add( p_demux->out, &fmt );
-
     [input release];
     [pool release];
 
@@ -420,8 +430,7 @@ static int Demux( demux_t *p_demux )
     demux_sys_t *p_sys = p_demux->p_sys;
     block_t *p_block;
 
-    p_block = block_New( p_demux, p_sys->width *
-                            p_sys->height * 2 /* FIXME */ );
+    p_block = block_New( p_demux, p_sys->width * p_sys->height * 2 /* FIXME */ );
     if( !p_block )
     {
         msg_Err( p_demux, "cannot get block" );
@@ -443,6 +452,14 @@ static int Demux( demux_t *p_demux )
         msleep( 10000 );
         return 1;
     }
+    else if( !p_sys->b_es_setup )
+    {
+        p_sys->fmt.video.i_frame_rate_base = [p_sys->output timeScale];
+        msg_Dbg( p_demux, "using frame rate base: %i", p_sys->fmt.video.i_frame_rate_base );
+        p_sys->p_es_video = es_out_Add( p_demux->out, &p_sys->fmt );
+        msg_Dbg( p_demux, "added new video es %4.4s %dx%d", (char*)&p_sys->fmt.i_codec, p_sys->fmt.video.i_width, p_sys->fmt.video.i_height );
+        p_sys->b_es_setup = YES;
+    }
 
     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block->i_pts );
     es_out_Send( p_demux->out, p_sys->p_es_video, p_block );
@@ -472,9 +489,14 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
 
         case DEMUX_GET_PTS_DELAY:
            pi64 = (int64_t*)va_arg( args, int64_t * );
-           *pi64 = (int64_t)DEFAULT_PTS_DELAY;
+           *pi64 = INT64_C(1000) * var_InheritInteger( p_demux, "live-caching" );
            return VLC_SUCCESS;
 
+        case DEMUX_GET_TIME:
+            pi64 = (int64_t*)va_arg( args, int64_t * );
+            *pi64 = mdate();
+            return VLC_SUCCESS;
+
         default:
            return VLC_EGENERIC;
     }