4

我现在正在编写一个程序来捕获屏幕并转换为视频。如果少于 10 秒,我可以成功保存视频。但是,如果不止于此,我会收到内存警告和应用程序崩溃。我写了这段代码如下。我在哪里缺少发布数据?我想知道该怎么做。

-(void)captureAndSaveImage
{

if(!stopCapturing){

if (assetWriterInput.readyForMoreMediaData)
{
    keepTrackOfBackGroundMood++;
    NSLog(@"keepTrackOfBackGroundMood is %d",keepTrackOfBackGroundMood);

    CVReturn cvErr = kCVReturnSuccess;

    CGSize imageSize = screenCaptureAndDraw.bounds.size;


    CGFloat imageScale = 0; //if zero, it reduce processing time

    if (NULL != UIGraphicsBeginImageContextWithOptions)
    {
        UIGraphicsBeginImageContextWithOptions(imageSize, NO, imageScale);
    }
    else
    {
        UIGraphicsBeginImageContext(imageSize);
    }

    [self.hiddenView.layer renderInContext:UIGraphicsGetCurrentContext()];

    [self.screenCaptureAndDraw.layer renderInContext:UIGraphicsGetCurrentContext()];


    UIImage * img = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();



     image = (CGImageRef) [img CGImage];

    CVPixelBufferRef pixelBuffer = NULL;
    CFDataRef imageData= CGDataProviderCopyData(CGImageGetDataProvider(image));
    cvErr = CVPixelBufferCreateWithBytes(kCFAllocatorDefault,
                                         FRAME_WIDTH2,
                                         FRAME_HEIGHT2,
                                         kCVPixelFormatType_32BGRA,
                                         (void*)CFDataGetBytePtr(imageData),
                                         CGImageGetBytesPerRow(image),
                                         NULL,
                                         NULL,
                                         NULL,
                                         &pixelBuffer);


    //CFRelease(imageData);
    //CGImageRelease(image);  //I can't write this code because I am not creating it and when I check online, it say it is not my responsibility to release. If I write, the application crash immediately


    // calculate the time
    CFAbsoluteTime thisFrameWallClockTime = CFAbsoluteTimeGetCurrent();
    CFTimeInterval elapsedTime = thisFrameWallClockTime - firstFrameWallClockTime;


    // write the sample

    BOOL appended = [assetWriterPixelBufferAdaptor appendPixelBuffer:pixelBuffer withPresentationTime:presentationTime];

    if (appended) {
        NSLog (@"appended sample at time %lf and keepTrackofappended is %d", CMTimeGetSeconds(presentationTime),keepTrackofappended);
        keepTrackofappended++;
    } else {
        NSLog (@"failed to append");
        [self stopRecording];
        //self.startStopButton.selected = NO;
        screenRecord=false;
    }



}

}//stop capturing
// });


}
4

1 回答 1

2

我同意你不想这样做CGImageRelease(image)。该对象是通过调用对象的CGImage方法创建的UIImage。因此所有权没有转移,ARC 仍然为您的img对象进行内存管理,并且不需要释放image对象。

但我认为你确实想恢复你的CFRelease(imageData). 这是由 创建的对象CGDataProviderCopyData,因此您拥有它并且必须清理它。

我还认为您必须在您之后发布pixelBuffer您创建的内容。您可以使用该功能。CVPixelBufferCreateWithBytesappendPixelBufferCVPixelBufferRelease

Core Foundation 的内存规则是,如果函数具有CopyCreate在名称中,则您拥有该对象并负责释放它。请参阅Core Foundation的内存管理编程指南中的创建规则。

我原以为静态分析器( Xcode“产品”菜单中的shift+ command+B或“分析”)会识别出这个问题,因为它在查找 Core Foundation 内存问题方面做得更好(尽管并不完美)。

或者,如果您通过 Instruments 中的 Leaks 工具运行您的应用程序(同时也会向您显示 Allocations 工具),您可以查看您的内存使用情况。虽然视频捕获需要大量 Live Bytes,但根据我的经验,它保持相当平淡。如果它在增长,则说明某处有泄漏。

于 2013-09-28T03:28:43.597 回答