1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-08-08 02:23:44 +03:00

22 lines
496 B
Objective-C

//
// NSURL+NSURL_Asset.h
// Snapchat
//
// Created by Michel Loenngren on 4/30/17.
// Copyright © 2017 Snapchat, Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface NSURL (Asset)
/**
In case the media server is reset while recording AVFoundation
gets in a weird state. Even though we reload our AVFoundation
object we still need to reload the assetkeys on the
outputfile. If we don't the AVAssetWriter will fail when started.
*/
- (void)reloadAssetKeys;
@end