用FFmpeg编译播放视频的简单demo
时间: 2023-08-25 17:19:47 浏览: 94
如何用FFmpeg编写一个简单播放器详细步骤介绍.docx
好的,下面是一个简单的使用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等库。
阅读全文