mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
13 lines
687 B
Objective-C
13 lines
687 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import "../third-party/FFMpeg-iOS/include/libavutil/avutil.h"
|
|
#import "../third-party/FFMpeg-iOS/include/libavutil/channel_layout.h"
|
|
#import "../third-party/FFMpeg-iOS/include/libswresample/swresample.h"
|
|
|
|
@interface FFMpegSwResample : NSObject
|
|
|
|
- (instancetype)initWithSourceChannelCount:(NSInteger)sourceChannelCount sourceSampleRate:(NSInteger)sourceSampleRate sourceSampleFormat:(enum AVSampleFormat)sourceSampleFormat destinationChannelCount:(NSInteger)destinationChannelCount destinationSampleRate:(NSInteger)destinationSampleRate destinationSampleFormat:(enum AVSampleFormat)destinationSampleFormat;
|
|
- (NSData *)resample:(AVFrame *)frame;
|
|
|
|
@end
|