sdl播放mp4

#include <SDL.h>

#ifdef __cplusplus
extern "C" {
#endif

#include <libavformat/avformat.h>
#include <libavcodec/avcodec.h>
#include <libswscale/swscale.h>
#include <libavutil/mem.h>
#include <libavutil/imgutils.h>
#include <SDL.h>
#include <SDL_thread.h>
#ifdef __cplusplus
}
#endif

#pragma comment(lib,"avcodec.lib")
#pragma comment(lib,"avformat.lib")
#pragma comment(lib,"avutil.lib")
#pragma comment(lib,"avdevice.lib")
#pragma comment(lib,"avfilter.lib")
#pragma comment(lib,"postproc.lib")
#pragma comment(lib,"swresample.lib")
#pragma comment(lib,"swscale.lib")
#pragma comment(lib,"SDL2.lib")

int display_video(const char* inputfile_name) {
	AVFormatContext *pFormatCtx = NULL;
	int i, videoStream;
	AVCodecContext *pCodecCtx = NULL;
	AVCodec *pCodec = NULL;
	AVFrame *pFrame = NULL;
	AVPacket packet;
	int frameFinished;
	//float aspect_ratio;	
	AVDictionary *optionsDict = NULL;
	struct SwsContext *sws_ctx = NULL;

	SDL_Surface *screen = NULL;
	SDL_Rect rect;
	SDL_Event event;
	// 窗口
	SDL_Window *window = nullptr;
	// 渲染上下文
	SDL_Renderer *renderer = nullptr;
	// 纹理(直接跟特定驱动程序相关的像素数据)
	SDL_Texture *texture = nullptr;

	// Register all formats and codecs.
	av_register_all();

	// Open video file.
	if (avformat_open_input(&pFormatCtx, inputfile_name, NULL, NULL) != 0) {
		return -1; // Couldn't open file.
	}

	// Retrieve stream information.
	if (avformat_find_stream_info(pFormatCtx, NULL) < 0) {
		return -1; // Couldn't find stream information.
	}

	// Dump information about file onto standard error.
	av_dump_format(pFormatCtx, 0, inputfile_name, 0);

	// Find the first video stream.
	videoStream = -1;
	for (i = 0; i < pFormatCtx->nb_streams; i++) {
		if (pFormatCtx->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
			videoStream = i;
			break;
		}
	}
	if (videoStream == -1) {
		return -1; // Didn't find a video stream.
	}

	// Get a pointer to the codec context for the video stream.
	pCodecCtx = pFormatCtx->streams[videoStream]->codec;

	// Find the decoder for the video stream.
	pCodec = avcodec_find_decoder(pCodecCtx->codec_id);
	if (pCodec == NULL) {
		fprintf(stderr, "Unsupported codec!\n");
		return -1; // Codec not found.
	}

	// Open codec
	if (avcodec_open2(pCodecCtx, pCodec, &optionsDict) < 0) {
		return -1; // Could not open codec.
	}

	// Allocate video frame.
	pFrame = av_frame_alloc();

	// Make a screen to put our video.
	if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_TIMER)) {
		fprintf(stderr, "Could not initialize SDL - %s\n", SDL_GetError());
		exit(1);
	}

	// 创建窗口
	window = SDL_CreateWindow("Display BMP", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, pCodecCtx->width, pCodecCtx->height, SDL_WINDOW_SHOWN);
	if (!window) {
		return -1;
	}
	// 创建渲染上下文
	renderer = SDL_CreateRenderer(window, -1, SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC);
	if (!renderer) {
		return -1;
	}
	//创建纹理
	texture = SDL_CreateTexture(renderer, SDL_PIXELFORMAT_IYUV, SDL_TEXTUREACCESS_STREAMING, pCodecCtx->width, pCodecCtx->height);
	if (!texture) {
		SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't set create texture: %s\n", SDL_GetError());
		SDL_free(texture);
		return -1;
	}
	// Allocate a place to put our YUV image on that screen.
	//bmp = SDL_CreateYUVOverlay(pCodecCtx->width, pCodecCtx->height, SDL_YV12_OVERLAY, screen);
	AVFrame *yuvFrame = av_frame_alloc();
	int numBytes = av_image_get_buffer_size(AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height, 1);
	uint8_t *buffer = (uint8_t *)av_malloc(numBytes * sizeof(uint8_t));
	av_image_fill_arrays(yuvFrame->data, yuvFrame->linesize, buffer, AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height, 1);

	sws_ctx = sws_getContext(pCodecCtx->width, pCodecCtx->height, pCodecCtx->pix_fmt, pCodecCtx->width, pCodecCtx->height, AV_PIX_FMT_YUV420P, SWS_BILINEAR, NULL, NULL, NULL);

	// Read frames and save first five frames to disk.
	i = 0;
	while (av_read_frame(pFormatCtx, &packet) >= 0) {
		// Is this a packet from the video stream?.
		if (packet.stream_index == videoStream) {
			// Decode video frame.
			avcodec_decode_video2(pCodecCtx, pFrame, &frameFinished, &packet);

			// Did we get a video frame?
			if (frameFinished) {

				//AVFrame pict;
				//pict.data[0] = bmp->pixels[0];
				//pict.data[1] = bmp->pixels[2];
				//pict.data[2] = bmp->pixels[1];

				//pict.linesize[0] = bmp->pitches[0];
				//pict.linesize[1] = bmp->pitches[2];
				//pict.linesize[2] = bmp->pitches[1];

				

				// Convert the image into YUV format that SDL uses.
				//sws_scale(sws_ctx, (uint8_t const * const *)pFrame->data, pFrame->linesize, 0, pCodecCtx->height, pict.data, pict.linesize);
				sws_scale(sws_ctx, (uint8_t const * const *)pFrame->data, pFrame->linesize, 0, pCodecCtx->height, yuvFrame->data, yuvFrame->linesize);

				rect.x = 0;
				rect.y = 0;
				rect.w = pCodecCtx->width;
				rect.h = pCodecCtx->height;
				
				//SDL_UpdateYUVTexture();

				int iPitch = pCodecCtx->width * SDL_BYTESPERPIXEL(SDL_PIXELFORMAT_YV12);

				SDL_UpdateTexture(texture, NULL, yuvFrame->data[0], *yuvFrame->linesize);
				
				// 用绘制颜色清除渲染目标
				SDL_RenderClear(renderer);
				// 复制纹理到渲染目标(渲染目标默认是 window)
				SDL_RenderCopy(renderer, texture, nullptr, nullptr);
				// 更新所有的渲染操作到屏幕上
				SDL_RenderPresent(renderer);
			}
		}

		// Free the packet that was allocated by av_read_frame.
		av_packet_unref(&packet);

		SDL_PollEvent(&event);
		switch (event.type) {
		case SDL_QUIT:
			printf("SDL_QUIT\n");
			SDL_Quit();
			exit(0);
			break;
		default:
			break;
		}

	}

	// Free the YUV frame.
	av_free(pFrame);

	// Close the codec.
	avcodec_close(pCodecCtx);

	// Close the video file.
	avformat_close_input(&pFormatCtx);

	SDL_DestroyRenderer(renderer);

	return 0;
}

开发工具:vs2017

SDL2-2.0.20

ffmpeg-n4.4-latest-win64-gpl-shared-4.4

### 回答1: SDL(Simple DirectMedia Layer)是一个跨平台的多媒体库,具有简单易用的API,能在不同平台(Windows、Linux、Mac OS X等)上实现多媒体相关的软件开发。SDL提供音频、视频、2D图形、事件等处理功能,可以用于游戏开发,媒体播放、图形用户界面应用等。 SDL播放视频,需要使用相关的库函数。首先,需要使用SDL_Init()函数来初始化SDL库,然后使用SDL_CreateWindow()函数创建一个窗口,接着使用SDL_CreateRenderer()函数创建渲染器。这些操作完成后,使用SDL_CreateTextureFromSurface()函数将视频文件载入内存作为纹理(texture)使用,然后使用SDL_RenderCopy()函数将纹理渲染到窗口上。最后,使用SDL_RenderPresent()函数将渲染结果显示出来。如果需要播放声音,还需要使用SDL_AudioSpec结构体进行相关设置。 需要注意的是,不同的平台可能支持的视频编码格式不同,需要根据具体情况进行设置。此外,视频播放的帧率、大小等也需要根据实际需要进行调整。 总体而言,SDL播放视频是一个相对简单的操作,具有跨平台的优势,可以为多媒体软件开发提供方便。但是,需要一定的编程经验和SDL库的相关知识才能够进行操作。 ### 回答2: SDL是一款跨平台的多媒体开发库,可以用来播放视频。要使用SDL播放视频,首先需要配置好SDL运行环境,将SDL库与开发环境进行链接。 在开始播放视频前,需要加载视频文件。可以使用SDL提供的函数SDL_LoadBMP()来加载一个BMP格式的视频文件,也可以使用其他支持的格式如MP4等。加载视频文件后,可以通过SDL_Surface来获取视频的像素数据。 接下来,需要创建一个SDL_Window来展示视频播放界面,可以使用SDL_CreateWindow()函数来创建一个窗口。然后,使用SDL_CreateRenderer()函数创建一个渲染器,将视频内容渲染至窗口上。 为了实现视频的播放,需要在一个循环中不断地渲染视频帧。可以利用SDL提供的函数SDL_RenderCopy()将视频的像素数据复制到渲染器上,然后使用SDL_RenderPresent()函数将渲染器的内容显示到窗口上。 在循环中,可以通过SDL_PollEvent()函数获取用户的输入事件,比如按键或鼠标点击等,以便进行相关的操作,如暂停视频、调节音量等。 当视频播放结束或用户关闭窗口时,需要释放相关的资源。可以使用SDL_FreeSurface()函数释放视频的像素数据,使用SDL_DestroyRenderer()函数销毁渲染器,使用SDL_DestroyWindow()函数关闭窗口。 总结来说,通过SDL库,我们可以加载视频文件,创建窗口和渲染器,实现视频的播放功能。同时,还可以通过SDL的其他函数来进行视频的控制和操作。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值