ios ffmpeg audio decode

ffmepg解码音频。

#import "FFMpegAudioDecoder.h"

#ifdef __cplusplus
extern "C" {
#endif
    
#include <libavutil/opt.h>
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libswscale/swscale.h>
    
#ifdef __cplusplus
};
#endif

@interface FFMpegAudioDecoder(){
    AVCodec *_audioCodec;
    AVCodecContext *_pCodecCtx;
    AVFrame *_pFrame;
    char* _pcmBuf;
}

@end



@implementation FFMpegAudioDecoder

-(int)intDecoder{
    av_register_all();
    
    //NSString* codecName = @"libfdk_aac";
    //_audioCodec = avcodec_find_decoder_by_name([codecName UTF8String]);
    
    _audioCodec = avcodec_find_decoder(AV_CODEC_ID_AAC);
    
    _pCodecCtx = avcodec_alloc_context3(_audioCodec);
    if (!_audioCodec)
        return -1;
    
    _pCodecCtx->codec_id = AV_CODEC_ID_AAC;
    _pCodecCtx->codec_type = AVMEDIA_TYPE_AUDIO;
    
    if(avcodec_open2(_pCodecCtx, _audioCodec,NULL) >= 0)
        _pFrame = av_frame_alloc();// Allocate video frame
    else
        return -1;
    
    return 0;
}

-(int)decode:(char*)pktaudio len:(int)len{
    
    AVPacket pkt = {
        .data = (uint8_t*)pktaudio,
        .size = len,
    };
    int got_frame = 0;
    
    int decLen = avcodec_decode_audio4(_pCodecCtx, _pFrame, &got_frame, &pkt);
    if (!got_frame) {
        NSLog(@"avcodec_decode_audio4 failed .");
        return -1;
    }
    NSLog(@"avcodec_decode_audio4 succ len : %d",decLen);
    return 0;
}

-(void)free{
    if(_pCodecCtx){
        avcodec_close(_pCodecCtx);
        _audioCodec = NULL;
    }
    if (_pFrame) {
        av_frame_free(&_pFrame);
        _pFrame = NULL;
    }
    if (_pcmBuf) {
        free(_pcmBuf);
        _pcmBuf = NULL;
    }
}

@end


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值