2

我正在使用 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];

有什么想法吗?

亚当

4

1 回答 1

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:请参阅主队列上的 performSelectorOnMainThread 和 dispatch_async 之间的区别是什么?

于 2013-11-05T01:14:44.803 回答