123456789101112131415161718192021222324 |
- //
- // AudioRecoderMamager.h
- // VclustersGemini
- //
- // Created by APPLE on 2019/12/25.
- // Copyright © 2019 APPLE. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RCAacToPcmDecoder : NSObject
- @property (nonatomic, assign) BOOL isLowIphone6S;
- - (NSData *)decodeAudioFrame:(NSData *)frame;
- @end
- NS_ASSUME_NONNULL_END
|