安卓程序员

Android 音视频学习基础--1.4 ffmpeg pcm输

2018-11-21  本文已影响4人  神农笔记

开发环境vs2010 环境比较老。一下程序要求输出一个pcm数据,使用pcm工具可以打开播放。在这里简单介绍ffmpeg的api调用。后面还会写个整个audio的播放,会提供统一的工程。

AVFormatContext *pFormatCtx;
int             i, audioStream;
AVCodecContext  *pCodecCtx;
AVCodec         *pCodec;
char url[]="WavinFlag.aac";
av_register_all();
avformat_network_init();
pFormatCtx = avformat_alloc_context();

if(avformat_open_input(&pFormatCtx,url,NULL,NULL)!=0){
    printf("Couldn't open input stream.\n");
    return -1;
}

if(av_find_stream_info(pFormatCtx)<0){
    printf("Couldn't find stream information.\n");
    return -1;
}
audioStream=-1;
for(i=0; i < pFormatCtx->nb_streams; i++)
    if(pFormatCtx->streams[i]->codec->codec_type==AVMEDIA_TYPE_AUDIO){
        audioStream=i;
        break;
    }
pCodec=avcodec_find_decoder(pCodecCtx->codec_id);
if(pCodec==NULL){
    printf("Codec not found.\n");
    return -1;
}
if(avcodec_open2(pCodecCtx, pCodec,NULL)<0){
    printf("Could not open codec.\n");
    return -1;
}
FILE *pFile=NULL;
pFile=fopen("output.pcm", "wb");
AVPacket *packet=(AVPacket *)malloc(sizeof(AVPacket));
av_init_packet(packet);


uint64_t out_channel_layout=AV_CH_LAYOUT_STEREO;
int out_nb_samples=1024;
AVSampleFormat out_sample_fmt=AV_SAMPLE_FMT_S16;
int out_sample_rate=44100;
int out_channels=av_get_channel_layout_nb_channels(out_channel_layout);

int out_buffer_size=av_samples_get_buffer_size(NULL,out_channels ,out_nb_samples,out_sample_fmt, 1);

uint8_t *out_buffer=(uint8_t *)av_malloc(MAX_AUDIO_FRAME_SIZE*2);
    
AVFrame *pFrame;
pFrame=avcodec_alloc_frame();
while(av_read_frame(pFormatCtx, packet)>=0){
    if(packet->stream_index==audioStream){
        ret = avcodec_decode_audio4( pCodecCtx, pFrame,&got_picture, packet);
        if ( ret < 0 ) {
            printf("Error in decoding audio frame.\n");
            return -1;
        }
        if ( got_picture > 0 ){
            swr_convert(au_convert_ctx,&out_buffer, MAX_AUDIO_FRAME_SIZE,(const uint8_t **)pFrame->data , pFrame->nb_samples);

            fwrite(out_buffer, 1, out_buffer_size, pFile);//写pcm文件,主意pcm的格式

            
            index++;
        }

    av_free_packet(packet);
}
swr_free(&au_convert_ctx);

av_free(out_buffer);

avcodec_close(pCodecCtx);

av_close_input_file(pFormatCtx);
上一篇 下一篇

猜你喜欢

热点阅读