本文说明了,在ffmpeg二次开发或调用库的过程,如何借助于ffmpeg源码进行调试。

:ffmpeg版本是4.0。

1. 编写代码

编写将pcm数据转换为mp2的代码

pcm_to_mp2.c

#include <libavformat/avformat.h>
#include <libavcodec/avcodec.h>
#include <libswresample/swresample.h>
#include <stdio.h>
#include <stdbool.h> SwrContext *g_swr_ctx = NULL; int flush_encoder(AVFormatContext *fmt_ctx, unsigned int stream_index)
{
int ret = 0;
int got_frame = 0;
AVPacket enc_pkt;
if(!(fmt_ctx->streams[stream_index]->codec->codec->capabilities &
CODEC_CAP_DELAY))
{
return 0;
} while(1)
{
enc_pkt.data = NULL;
enc_pkt.size = 0;
av_init_packet(&enc_pkt);
ret = avcodec_encode_audio2(fmt_ctx->streams[stream_index]->codec, &enc_pkt, NULL, &got_frame);
if(ret < 0)
{
break;
}
if(!got_frame)
{
ret = 0;
break;
} ret = av_write_frame(fmt_ctx, &enc_pkt);
if(ret < 0)
{
break;
}
} return ret;
} void usage(void)
{
printf("./aac input_file output_file.mp2\n");
} int main(int argc, char *argv[])
{ if(argc != 3)
{
usage();
return -1;
} char *input_file = argv[1];
char *output_file = argv[2]; AVFormatContext *pFormatCtx = NULL;
AVOutputFormat *ofmt = NULL;
AVStream *audio_stream = NULL;
AVCodecContext *pCodecCtx = NULL;
AVCodec *pCodec = NULL; uint8_t *frame_buf = NULL;
AVFrame *pFrame = NULL;
AVPacket pkt; int got_frame = 0;
int ret = 0;
int size = 0; int i = 0; FILE *fp = fopen(input_file, "rb"); av_register_all();
avformat_alloc_output_context2(&pFormatCtx, NULL, NULL, output_file);
ofmt = pFormatCtx->oformat; if(avio_open(&pFormatCtx->pb, output_file, AVIO_FLAG_READ_WRITE) < 0)
{
printf("Error: call avio_open failed!\n");
return -1;
} audio_stream = avformat_new_stream(pFormatCtx, 0);
if(!audio_stream)
{
return -1;
} //初始化编码器
pCodecCtx = audio_stream->codec;
pCodecCtx->codec_id = ofmt->audio_codec;
pCodecCtx->codec_type = AVMEDIA_TYPE_AUDIO;
pCodecCtx->sample_fmt = AV_SAMPLE_FMT_S16;
pCodecCtx->channel_layout = AV_CH_LAYOUT_STEREO;
pCodecCtx->channels = av_get_channel_layout_nb_channels(pCodecCtx->channel_layout);
pCodecCtx->sample_rate = 44100;
pCodecCtx->bit_rate = 192000;
pCodecCtx->frame_size = 1152; AVFrame *src_frame = NULL;
AVFrame *dst_frame = NULL; src_frame = av_frame_alloc();
src_frame->nb_samples = 1152;
src_frame->sample_rate = 44100;
src_frame->format= AV_SAMPLE_FMT_S16;
src_frame->channel_layout = AV_CH_LAYOUT_STEREO;
src_frame->channels = av_get_channel_layout_nb_channels(src_frame->channel_layout); pCodec = avcodec_find_encoder(pCodecCtx->codec_id);
if(!pCodec)
{
printf("Error: call avcodec_find_encoder failed!\n");
return -1;
} if(avcodec_open2(pCodecCtx, pCodec, NULL) < 0)
{
printf("Error: call avcodec_open2 failed!\n");
return -1;
} int sr_size = 0;
sr_size = av_samples_get_buffer_size(NULL, src_frame->channels, src_frame->nb_samples, src_frame->format, 1);
frame_buf = (uint8_t *)av_malloc(sr_size);
if(!frame_buf)
{
printf("Error: call av_malloc failed, sr_size = %d\n", sr_size);
return -1;
} if(av_sample_fmt_is_planar(src_frame->format))
{
avcodec_fill_audio_frame(src_frame, src_frame->channels, src_frame->format, (const uint8_t *)frame_buf, sr_size * src_frame->channels, 1 );
}
else
{
avcodec_fill_audio_frame(src_frame, src_frame->channels, src_frame->format, (const uint8_t *)frame_buf, sr_size, 0 );
} //Write Header
if(avformat_write_header(pFormatCtx,NULL) < 0)
{
printf("Error: call avformat_write_header..\n");
return -1;
} AVPacket *packet = (AVPacket *)av_malloc(sizeof(AVPacket));
av_init_packet(packet); av_dump_format(pFormatCtx, 0, output_file, 1); src_frame->pts = 0;
while(fread(frame_buf, 1, sr_size, fp) > 0)
{
got_frame = 0; ret = avcodec_encode_audio2(pCodecCtx, packet, src_frame, &got_frame);
if(ret < 0)
{
printf("Error: call avcodec_encode_audio2\n");
return -1;
}
i++; src_frame->pts = i * 100; if(1 == got_frame)
{
packet->stream_index = audio_stream->index;
ret = av_write_frame(pFormatCtx, packet);
if(ret < 0)
{
printf("Error: call av_write_frame..\n");
return -1;
}
av_free_packet(packet);
} } //flush encoder
ret = flush_encoder(pFormatCtx, 0);
if(ret < 0)
{
printf("Error: call flush_encoder failed!\n");
return -1;
} if(av_write_trailer(pFormatCtx) < 0)
{
printf("Error: call av_write_trailer..\n");
return -1;
} if(audio_stream)
{
avcodec_close(audio_stream->codec);
av_free(src_frame);
av_free(frame_buf);
} avio_close(pFormatCtx->pb);
avformat_free_context(pFormatCtx);
av_free(packet); fclose(fp); printf("Encode Audio End...\n"); return 0;
}

2. 编译ffmpeg源码

$ ./configure --enable-static --disable-shared --enable-debug --disable-optimizations --disable-asm --disable-stripping --enable-doc

$ make -j 4

3. 将代码放置在examples下

pcm_to_mp2.c拷贝到 doc/examples目录下,该目录下都是ffmpeg的例子程序。

4. 添加编译配置

修改doc/Makefile文件添加pcm_to_mp2的编译项目。

修改ffbuild/config.mak文件,

添加CONFIG_PCM_TO_MP2_EXAMPLE=yes宏。

5. 编译

ffmpeg源码根目录下,执行make examples

这样就在doc/examples目录下生成了pcm_to_mp2的可执行程序。

6. gdb调试

ffmpeg 使用 gdb 调试相关技巧的更多相关文章

  1. Linux下编译ffmpeg并用GDB调试

    1.在Ubuntu界面上调处命令行界面,最方便的方式是使用快捷键Ctrl+Alt+T. 2.安装SDL SDL是一个开源的多媒体开发库,可以设置图像和视频的绘制等操作.如果不安装SDL,FFMPEG将 ...

  2. gdb调试相关

    GDB调试及其调试脚本的使用返回脚本百事通一.GDB调试 1.1. GDB 概述 GDB是GNU开源组织发布的一个强大的UNIX下的程序调试工具.或许,各位比较喜欢那种图形界面方式的,像VC.BCB等 ...

  3. gdb调试小技巧

    1.进入gdb,需要源码,然后gdb+可执行文件,如果要看代码一起的就gdb+可执行文件+tui 2.设置参数 set args +参数 3.设置断点,可以b +行数或者b+函数名字 4.r就是一直跑 ...

  4. GDB调试-从入门到实践

    你好,我是雨乐! 在上篇文章中,我们分析了线上coredump产生的原因,其中用到了coredump分析工具gdb,这几天一直有读者在问,能不能写一篇关于gdb调试方面的文章,今天借助此文,分享一些工 ...

  5. roslaunch & gdb 调试指南(待补充)

    1. 安装xterm sudo apt-get install xterm 2. 在launch文件中添加如下内容: <node name="navigation" pkg= ...

  6. gdb调试器在windows下的相关内容

    1.gdb调试器在visual studio或dev c++中也有类似的调试图形化可视界面,但是gdb不同的是它是由命令行组成,他的界面对于习惯图形化可视界面的用户来说一时间会不知所措 2.通过gcc ...

  7. gdb调试运行时的程序小技巧

    使用gdb调试运行时的程序小技巧 标签: 未分类 gdb pstack | 发表时间:2012-10-15 04:32 | 作者:士豪 分享到: 出处:http://rdc.taobao.com/bl ...

  8. ffmpeg调试相关知识点

    1.若要调试FFMPEG,在编译时应当在configure时,加上 --enable-debug --disable-asm 注:在调试x264时就应该加上这两个配置选项,方能调试 2.make in ...

  9. GDB调试技巧:总结篇

    目录 一 写在开头 1.1 本文内容 二 学习资料 三 常用命令 四 调试技巧 注:原创不易,转载请务必注明原作者和出处,感谢支持! 一 写在开头 1.1 本文内容 总结GDB调试的一些常用命令和调试 ...

随机推荐

  1. python库下载网址

    wheel文件下载地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/

  2. 文件和I/O

    一.读写文本数据 (1)使用open()函数配合rt模式读取文本文件的内容:( t 为默认的文本模式) (2)执行写入操作,使用wt模式,如果待操作文件已存在,会清除并覆盖其原先的内容: (3)对已存 ...

  3. [题解] [Code+#1]Yazid 的新生舞会

    题面 题解 upd : \(cnt_i\) 代表值为 \(i\) 的个数 我们可以暴力枚举众数 \(k\) 把等于 \(k\) 的赋值成 1 , 不等于 \(k\) 的赋值成 -1 这样原序列就变成了 ...

  4. vue实战_从头开始搭建vue工程

    写在前面:vue工程入口文件分析 /index.html,/src/main.js,/src/APP.vue /index.html文件示例: <!DOCTYPE html> <ht ...

  5. servlet多线程安全问题

    Servelet多线程安全问题 原因 一个servlet被实例化一次,当有多个用户访问时,多个线程会访问同一个实例,实例变量就会被不同的用户修改. 简单的案例 新建servlet,访问http://l ...

  6. mybatis+mysql批量插入和批量更新、存在及更新

    mybatis+mysql批量插入和批量更新 一.批量插入 批量插入数据使用的sql语句是: insert into table (字段一,字段二,字段三) values(xx,xx,xx),(oo, ...

  7. Flutter移动电商实战 --(30)列表页_商品列表UI界面布局

    小程序里面的布局方式 小程序的图片上这里使用的是warp布局,因为首页里面火爆专区,已经用过了warp来布局了. 所以这里我们没有必要再讲一遍,这里我们使用ListView,我们把它布局成下图这种形式 ...

  8. web前端——实例中学习css,javascript

    最近闲暇时候在研究前端的样式和js,以前都是从w3school上看看那些选择器和DOM操作方法很少去实际做demo来研究,做的过程当中才真切感觉到纸上得来终觉浅,看得懂跟能做出东西完全两码事,尤其在定 ...

  9. vue-cli项目模板的一些思考

    之前有个想法,就是要利用vue写一套ui.然后当时也没有搞清楚到底怎么写. 几经周转吧,通过付费的方式在gitbook上面找到了答案. 找到答案之后再看我们正在开发的项目,看伙伴写的代码,突然发现完全 ...

  10. WinCE 开发问题:不支持 Open Generic 方法的 GetParameters。

    WinCE中用的是Newtonsoft.Json.Compact.dll序列化Json的, 今天用Json解析类的时候, 提示异常:不支持 Open Generic 方法的 GetParameters ...