AVMutableVideoComposition - CoreAnimation:警告,删除线程与未提交的CATransaction

时间:2013-10-20 01:06:25

标签: xcode avfoundation

我正在使用AVMutableComposition处理一些基本的视频合成 - 目前是带有文本图层(CATextLayer)的视频图层(AVMutableVideoComposition)。

一切看起来都不错但是当我通过“AVMutableComposition exportAsynchronouslyWithCompletionHandler”导出它时,它会关闭并完成但会返回此错误:

CoreAnimation: warning, deleted thread with uncommitted CATransaction; created by:
0   QuartzCore                          0x00007fff8a106959 _ZN2CA11Transaction4pushEv + 219
1   QuartzCore                          0x00007fff8a106531 _ZN2CA11Transaction15ensure_implicitEv + 273
2   QuartzCore                          0x00007fff8a10d66f _ZN2CA5Layer13thread_flags_EPNS_11TransactionE + 37
3   QuartzCore                          0x00007fff8a10d5a7 _ZN2CA5Layer4markEPNS_11TransactionEjj + 79
4   QuartzCore                          0x00007fff8a112cac _ZN2CA5Layer27contents_visibility_changedEPNS_11TransactionEb + 216
5   QuartzCore                          0x00007fff8a112b65 _ZN2CA5Layer12mark_visibleEPNS_11TransactionEb + 261
6   QuartzCore                          0x00007fff8a112b26 _ZN2CA5Layer12mark_visibleEPNS_11TransactionEb + 198
7   QuartzCore                          0x00007fff8a112b26 _ZN2CA5Layer12mark_visibleEPNS_11TransactionEb + 198
8   QuartzCore                          0x00007fff8a1128d1 _ZN2CA5Layer11set_visibleEj + 335
9   QuartzCore                          0x00007fff8a1126b9 _ZN2CA7Context9set_layerEPKv + 75
10  MediaToolbox                        0x00007fff857f155b FigCoreAnimationRendererInvalidate + 108
11  CoreFoundation                      0x00007fff8ec763df CFRelease + 511
12  MediaToolbox                        0x00007fff857d3a6b FigVideoCompositionProcessorInvalidate + 675
13  MediaToolbox                        0x00007fff85791341 FigAssetWriterCreateWithURL + 18573
14  MediaToolbox                        0x00007fff85791f7b FigAssetWriterCreateWithURL + 21703
15  CoreMediaAuthoringCrunchers         0x00000001046e2b99 AssetAudioSourcer_CreateInstance + 3865

如果我注释掉以下行,我发现这会消失 - 但CATextLayer不会呈现:

videoComposition.animationTool = [AVVideoCompositionCoreAnimationTool videoCompositionCoreAnimationToolWithPostProcessingAsVideoLayer:videoLayer inLayer:parentLayer];

有人想过吗?

亚当

1 个答案:

答案 0 :(得分:1)

您必须确保在主线程上进行任何UI绘图。您注释掉的行可能在内部进行了一些绘制,因此您需要确保在主线程上执行此代码。有两种方法可以使用函数dispatch_async()或方法performSelectorOnMainThread:withObject:waitUntilDone:performSelectorOnMainThread:withObject:waitUntilDone:modes:

- (void) someMethod
{
    // You may need to load a container object to pass as myCustomData whose
    // contents you then access in myCustomDrawing: if the data isn't accessible
    // as instance data.

    [...]

    // Perform all drawing/UI updates on the main thread.
    [self performSelectorOnMainThread:@selector(myCustomDrawing:)
                           withObject:myCustomData
                        waitUntilDone:YES];

    [...]
}

- (void) myCustomDrawing:(id)myCustomData
{
    // Perform any drawing/UI updates here.
    videoComposition.animationTool = [AVVideoCompositionCoreAnimationTool videoCompositionCoreAnimationToolWithPostProcessingAsVideoLayer:videoLayer
                                                                                                                                  inLayer:parentLayer];
}

有关dispatch_async()performSelectorOnMainThread:withObjects:waitUntilDone:之间差异的相关帖子,请参阅Whats the difference between performSelectorOnMainThread and dispatch_async on main queue?