用ffmpeg做的视频播放demo

4 篇文章 0 订阅
1 篇文章 0 订阅

    在网上看到一个视频图像播放写的很好的文章,附链接http://blog.csdn.net/glouds/article/details/50937266, 因此想到用cmake实现,做了一个播放本地视频的demo,已放到github https://github.com/aasoga/NdkDemo 

    由于本人不会c代码,所以c部分直接用的原代码,不过也碰到一些问题,第一个就是源代码的编译文件是mk,改成cmakeLists以后记得添加link_library,具体如何添加可以直接看代码。另外一个问题是源代码的c文件中的filename直接用字符串赋值是有问题的,调用avformat_open_input 会返回失败,这也是个坑,而且c和c++的写法也是有区别的,具体可以看这个 http://developer.51cto.com/art/201203/324289.htm ,后续会研究音频播放的实现和完善。

好的,下面是一个简单的使用FFmpeg解码并播放视频demo代码: ```c #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> #include <libavformat/avformat.h> #include <libavutil/imgutils.h> #include <libavutil/samplefmt.h> #include <libswscale/swscale.h> int main(int argc, char *argv[]) { AVFormatContext *fmt_ctx = NULL; AVCodecContext *codec_ctx = NULL; AVCodec *codec = NULL; AVFrame *frame = NULL; AVPacket pkt; int stream_index, ret; struct SwsContext *sws_ctx = NULL; const char *src_filename; const char *dst_filename; FILE *dst_file; if (argc < 3) { fprintf(stderr, "Usage: %s <input_file> <output_file>\n", argv[0]); exit(1); } src_filename = argv[1]; dst_filename = argv[2]; // 打开输入文件 if (avformat_open_input(&fmt_ctx, src_filename, NULL, NULL) < 0) { fprintf(stderr, "Error opening input file.\n"); exit(1); } // 获取流信息 if (avformat_find_stream_info(fmt_ctx, NULL) < 0) { fprintf(stderr, "Error finding stream information.\n"); exit(1); } // 打印流信息 av_dump_format(fmt_ctx, 0, src_filename, 0); // 找到视频流 stream_index = av_find_best_stream(fmt_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, &codec, 0); if (stream_index < 0) { fprintf(stderr, "Error finding video stream.\n"); exit(1); } // 分配解码器上下文 codec_ctx = avcodec_alloc_context3(codec); if (!codec_ctx) { fprintf(stderr, "Error allocating codec context.\n"); exit(1); } // 复制解码器参数 if (avcodec_parameters_to_context(codec_ctx, fmt_ctx->streams[stream_index]->codecpar) < 0) { fprintf(stderr, "Error copying codec parameters.\n"); exit(1); } // 打开解码器 if (avcodec_open2(codec_ctx, codec, NULL) < 0) { fprintf(stderr, "Error opening codec.\n"); exit(1); } // 分配帧 frame = av_frame_alloc(); if (!frame) { fprintf(stderr, "Error allocating frame.\n"); exit(1); } // 打开输出文件 dst_file = fopen(dst_filename, "wb"); if (!dst_file) { fprintf(stderr, "Error opening output file.\n"); exit(1); } // 初始化SWS上下文 sws_ctx = sws_getContext(codec_ctx->width, codec_ctx->height, codec_ctx->pix_fmt, codec_ctx->width, codec_ctx->height, AV_PIX_FMT_RGB24, SWS_BILINEAR, NULL, NULL, NULL); // 读取数据包并解码 while (av_read_frame(fmt_ctx, &pkt) >= 0) { if (pkt.stream_index == stream_index) { ret = avcodec_send_packet(codec_ctx, &pkt); if (ret < 0) { fprintf(stderr, "Error sending a packet for decoding.\n"); exit(1); } while (ret >= 0) { ret = avcodec_receive_frame(codec_ctx, frame); if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) break; else if (ret < 0) { fprintf(stderr, "Error during decoding.\n"); exit(1); } // 转换像素格式 sws_scale(sws_ctx, (const uint8_t *const *)frame->data, frame->linesize, 0, frame->height, frame->data, frame->linesize); // 写入文件 fwrite(frame->data[0], 1, codec_ctx->width * codec_ctx->height * 3, dst_file); } } av_packet_unref(&pkt); } // 关闭输出文件 fclose(dst_file); // 释放资源 av_frame_free(&frame); avcodec_free_context(&codec_ctx); avformat_close_input(&fmt_ctx); sws_freeContext(sws_ctx); return 0; } ``` 这个程序可以读取一个视频文件并将其解码到RGB24格式,然后写入一个二进制文件中。如果您需要显示视频,可以使用相应的库将RGB24格式转换为您需要的格式,例如OpenGL或SDL等库。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值