| 
									
										
										
										
											2015-05-24 06:55:12 +02:00
										 |  |  | // Copyright 2009 Dolphin Emulator Project
 | 
					
						
							| 
									
										
										
										
											2015-05-18 01:08:10 +02:00
										 |  |  | // Licensed under GPLv2+
 | 
					
						
							| 
									
										
										
										
											2013-04-17 23:09:55 -04:00
										 |  |  | // Refer to the license.txt file included.
 | 
					
						
							| 
									
										
										
										
											2009-07-06 02:10:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-27 20:42:11 +02:00
										 |  |  | #if defined(__FreeBSD__)
 | 
					
						
							|  |  |  | #define __STDC_CONSTANT_MACROS 1
 | 
					
						
							| 
									
										
										
										
											2013-10-29 01:23:17 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-08-27 20:42:11 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-03 01:08:54 -04:00
										 |  |  | #include <string>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-02 13:07:08 -05:00
										 |  |  | extern "C" { | 
					
						
							|  |  |  | #include <libavcodec/avcodec.h>
 | 
					
						
							|  |  |  | #include <libavformat/avformat.h>
 | 
					
						
							|  |  |  | #include <libavutil/mathematics.h>
 | 
					
						
							|  |  |  | #include <libswscale/swscale.h>
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-03 01:08:54 -04:00
										 |  |  | #include "Common/FileUtil.h"
 | 
					
						
							| 
									
										
										
										
											2016-01-17 16:54:31 -05:00
										 |  |  | #include "Common/MsgHandler.h"
 | 
					
						
							| 
									
										
										
										
											2014-06-05 19:29:54 -04:00
										 |  |  | #include "Common/Logging/Log.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-03 17:20:42 -05:00
										 |  |  | #include "Core/ConfigManager.h"
 | 
					
						
							| 
									
										
										
										
											2014-10-11 23:12:17 -04:00
										 |  |  | #include "Core/CoreTiming.h"
 | 
					
						
							| 
									
										
										
										
											2016-01-23 02:05:27 -05:00
										 |  |  | #include "Core/Movie.h"
 | 
					
						
							| 
									
										
										
										
											2014-10-20 11:11:56 +02:00
										 |  |  | #include "Core/HW/SystemTimers.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-17 05:18:15 -05:00
										 |  |  | #include "Core/HW/VideoInterface.h" //for TargetRefreshRate
 | 
					
						
							|  |  |  | #include "VideoCommon/AVIDump.h"
 | 
					
						
							|  |  |  | #include "VideoCommon/VideoConfig.h"
 | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-13 23:06:20 +02:00
										 |  |  | #if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(55, 28, 1)
 | 
					
						
							|  |  |  | #define av_frame_alloc avcodec_alloc_frame
 | 
					
						
							|  |  |  | #define av_frame_free avcodec_free_frame
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | static AVFormatContext* s_format_context = nullptr; | 
					
						
							|  |  |  | static AVStream* s_stream = nullptr; | 
					
						
							| 
									
										
										
										
											2014-06-24 04:12:15 +02:00
										 |  |  | static AVFrame* s_src_frame = nullptr; | 
					
						
							|  |  |  | static AVFrame* s_scaled_frame = nullptr; | 
					
						
							| 
									
										
										
										
											2016-01-28 23:53:08 +00:00
										 |  |  | static AVPixelFormat s_pix_fmt = AV_PIX_FMT_BGR24; | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | static uint8_t* s_yuv_buffer = nullptr; | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | static SwsContext* s_sws_context = nullptr; | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | static int s_width; | 
					
						
							|  |  |  | static int s_height; | 
					
						
							|  |  |  | static int s_size; | 
					
						
							| 
									
										
										
										
											2014-10-04 03:28:01 -04:00
										 |  |  | static u64 s_last_frame; | 
					
						
							| 
									
										
										
										
											2014-11-02 04:51:44 +01:00
										 |  |  | static bool s_start_dumping = false; | 
					
						
							| 
									
										
										
										
											2014-10-20 11:11:56 +02:00
										 |  |  | static u64 s_last_pts; | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void InitAVCodec() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	static bool first_run = true; | 
					
						
							|  |  |  | 	if (first_run) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 		av_register_all(); | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 		first_run = false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-01 08:50:15 -06:00
										 |  |  | bool AVIDump::Start(int w, int h, DumpFormat format) | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-01-01 08:50:15 -06:00
										 |  |  | 	if (format == DumpFormat::FORMAT_BGR) | 
					
						
							|  |  |  | 		s_pix_fmt = AV_PIX_FMT_BGR24; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		s_pix_fmt = AV_PIX_FMT_RGBA; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 	s_width = w; | 
					
						
							|  |  |  | 	s_height = h; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-04 03:28:01 -04:00
										 |  |  | 	s_last_frame = CoreTiming::GetTicks(); | 
					
						
							| 
									
										
										
										
											2014-10-20 11:11:56 +02:00
										 |  |  | 	s_last_pts = 0; | 
					
						
							| 
									
										
										
										
											2014-10-04 03:28:01 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 	InitAVCodec(); | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	bool success = CreateFile(); | 
					
						
							|  |  |  | 	if (!success) | 
					
						
							|  |  |  | 		CloseFile(); | 
					
						
							|  |  |  | 	return success; | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool AVIDump::CreateFile() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	AVCodec* codec = nullptr; | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	s_format_context = avformat_alloc_context(); | 
					
						
							|  |  |  | 	snprintf(s_format_context->filename, sizeof(s_format_context->filename), "%s", | 
					
						
							|  |  |  | 	         (File::GetUserPath(D_DUMPFRAMES_IDX) + "framedump0.avi").c_str()); | 
					
						
							|  |  |  | 	File::CreateFullPath(s_format_context->filename); | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-03 17:20:42 -05:00
										 |  |  | 	// Ask to delete file
 | 
					
						
							|  |  |  | 	if (File::Exists(s_format_context->filename)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if (SConfig::GetInstance().m_DumpFramesSilent || | 
					
						
							|  |  |  | 			AskYesNoT("Delete the existing file '%s'?", s_format_context->filename)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			File::Delete(s_format_context->filename); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			// Stop and cancel dumping the video
 | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	if (!(s_format_context->oformat = av_guess_format("avi", nullptr, nullptr)) || | 
					
						
							|  |  |  | 	    !(s_stream = avformat_new_stream(s_format_context, codec))) | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 	s_stream->codec->codec_id = g_Config.bUseFFV1 ? AV_CODEC_ID_FFV1 | 
					
						
							|  |  |  | 	                                              : s_format_context->oformat->video_codec; | 
					
						
							| 
									
										
										
										
											2016-01-08 10:22:19 -05:00
										 |  |  | 	if (!g_Config.bUseFFV1) | 
					
						
							|  |  |  | 		s_stream->codec->codec_tag = MKTAG('X', 'V', 'I', 'D'); // Force XVID FourCC for better compatibility
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	s_stream->codec->codec_type = AVMEDIA_TYPE_VIDEO; | 
					
						
							|  |  |  | 	s_stream->codec->bit_rate = 400000; | 
					
						
							|  |  |  | 	s_stream->codec->width = s_width; | 
					
						
							|  |  |  | 	s_stream->codec->height = s_height; | 
					
						
							| 
									
										
										
										
											2016-01-02 13:07:08 -05:00
										 |  |  | 	s_stream->codec->time_base.num = 1; | 
					
						
							| 
									
										
										
										
											2016-01-21 00:27:54 -05:00
										 |  |  | 	s_stream->codec->time_base.den = VideoInterface::GetTargetRefreshRate(); | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	s_stream->codec->gop_size = 12; | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 	s_stream->codec->pix_fmt = g_Config.bUseFFV1 ? AV_PIX_FMT_BGRA : AV_PIX_FMT_YUV420P; | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!(codec = avcodec_find_encoder(s_stream->codec->codec_id)) || | 
					
						
							|  |  |  | 	    (avcodec_open2(s_stream->codec, codec, nullptr) < 0)) | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-24 04:12:15 +02:00
										 |  |  | 	s_src_frame = av_frame_alloc(); | 
					
						
							|  |  |  | 	s_scaled_frame = av_frame_alloc(); | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	s_size = avpicture_get_size(s_stream->codec->pix_fmt, s_width, s_height); | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	s_yuv_buffer = new uint8_t[s_size]; | 
					
						
							| 
									
										
										
										
											2014-06-24 04:12:15 +02:00
										 |  |  | 	avpicture_fill((AVPicture*)s_scaled_frame, s_yuv_buffer, s_stream->codec->pix_fmt, s_width, s_height); | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	NOTICE_LOG(VIDEO, "Opening file %s for dumping", s_format_context->filename); | 
					
						
							|  |  |  | 	if (avio_open(&s_format_context->pb, s_format_context->filename, AVIO_FLAG_WRITE) < 0) | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 		WARN_LOG(VIDEO, "Could not open %s", s_format_context->filename); | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	avformat_write_header(s_format_context, nullptr); | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | static void PreparePacket(AVPacket* pkt) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	av_init_packet(pkt); | 
					
						
							|  |  |  | 	pkt->data = nullptr; | 
					
						
							|  |  |  | 	pkt->size = 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-26 20:47:48 -05:00
										 |  |  | void AVIDump::AddFrame(const u8* data, int width, int height) | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-01-01 08:50:15 -06:00
										 |  |  | 	avpicture_fill((AVPicture*)s_src_frame, const_cast<u8*>(data), s_pix_fmt, width, height); | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-01 08:50:15 -06:00
										 |  |  | 	// Convert image from {BGR24, RGBA} to desired pixel format, and scale to initial
 | 
					
						
							| 
									
										
										
										
											2011-03-25 18:12:40 +00:00
										 |  |  | 	// width and height
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 	if ((s_sws_context = sws_getCachedContext(s_sws_context, | 
					
						
							| 
									
										
										
										
											2016-01-01 08:50:15 -06:00
										 |  |  | 	                                          width, height, s_pix_fmt, | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 	                                          s_width, s_height, s_stream->codec->pix_fmt, | 
					
						
							|  |  |  | 	                                          SWS_BICUBIC, nullptr, nullptr, nullptr))) | 
					
						
							| 
									
										
										
										
											2011-03-25 18:12:40 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-06-24 04:12:15 +02:00
										 |  |  | 		sws_scale(s_sws_context, s_src_frame->data, s_src_frame->linesize, 0, | 
					
						
							|  |  |  | 		          height, s_scaled_frame->data, s_scaled_frame->linesize); | 
					
						
							| 
									
										
										
										
											2011-03-25 18:12:40 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-10 02:53:12 +02:00
										 |  |  | 	s_scaled_frame->format = s_stream->codec->pix_fmt; | 
					
						
							|  |  |  | 	s_scaled_frame->width = s_width; | 
					
						
							|  |  |  | 	s_scaled_frame->height = s_height; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 	// Encode and write the image.
 | 
					
						
							|  |  |  | 	AVPacket pkt; | 
					
						
							|  |  |  | 	PreparePacket(&pkt); | 
					
						
							| 
									
										
										
										
											2014-10-20 11:11:56 +02:00
										 |  |  | 	int got_packet = 0; | 
					
						
							|  |  |  | 	int error = 0; | 
					
						
							|  |  |  | 	u64 delta; | 
					
						
							|  |  |  | 	s64 last_pts; | 
					
						
							| 
									
										
										
										
											2016-01-23 02:05:27 -05:00
										 |  |  | 	// Check to see if the first frame being dumped is the first frame of output from the emulator.
 | 
					
						
							|  |  |  | 	// This prevents an issue with starting dumping later in emulation from placing the frames incorrectly.
 | 
					
						
							|  |  |  | 	if (!s_start_dumping && Movie::g_currentFrame < 1) | 
					
						
							| 
									
										
										
										
											2014-10-20 11:11:56 +02:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		delta = CoreTiming::GetTicks(); | 
					
						
							|  |  |  | 		last_pts = AV_NOPTS_VALUE; | 
					
						
							| 
									
										
										
										
											2014-11-02 04:51:44 +01:00
										 |  |  | 		s_start_dumping = true; | 
					
						
							| 
									
										
										
										
											2014-10-20 11:11:56 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		delta = CoreTiming::GetTicks() - s_last_frame; | 
					
						
							|  |  |  | 		last_pts = (s_last_pts * s_stream->codec->time_base.den) / SystemTimers::GetTicksPerSecond(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	u64 pts_in_ticks = s_last_pts + delta; | 
					
						
							|  |  |  | 	s_scaled_frame->pts = (pts_in_ticks * s_stream->codec->time_base.den) / SystemTimers::GetTicksPerSecond(); | 
					
						
							|  |  |  | 	if (s_scaled_frame->pts != last_pts) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		s_last_frame = CoreTiming::GetTicks(); | 
					
						
							|  |  |  | 		s_last_pts = pts_in_ticks; | 
					
						
							|  |  |  | 		error = avcodec_encode_video2(s_stream->codec, &pkt, s_scaled_frame, &got_packet); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 	while (!error && got_packet) | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 		// Write the compressed frame in the media file.
 | 
					
						
							| 
									
										
										
										
											2015-08-21 10:26:35 +02:00
										 |  |  | 		if (pkt.pts != (s64)AV_NOPTS_VALUE) | 
					
						
							| 
									
										
										
										
											2014-10-20 11:11:56 +02:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			pkt.pts = av_rescale_q(pkt.pts, | 
					
						
							|  |  |  | 			                       s_stream->codec->time_base, s_stream->time_base); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2015-08-21 10:26:35 +02:00
										 |  |  | 		if (pkt.dts != (s64)AV_NOPTS_VALUE) | 
					
						
							| 
									
										
										
										
											2014-10-20 11:11:56 +02:00
										 |  |  | 		{ | 
					
						
							|  |  |  | 			pkt.dts = av_rescale_q(pkt.dts, | 
					
						
							|  |  |  | 			                       s_stream->codec->time_base, s_stream->time_base); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-01-18 20:01:11 +01:00
										 |  |  | #if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(56, 60, 100)
 | 
					
						
							| 
									
										
										
										
											2014-10-20 11:11:56 +02:00
										 |  |  | 		if (s_stream->codec->coded_frame->key_frame) | 
					
						
							|  |  |  | 			pkt.flags |= AV_PKT_FLAG_KEY; | 
					
						
							| 
									
										
										
										
											2016-01-18 20:01:11 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-10-20 11:11:56 +02:00
										 |  |  | 		pkt.stream_index = s_stream->index; | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 		av_interleaved_write_frame(s_format_context, &pkt); | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 		// Handle delayed frames.
 | 
					
						
							|  |  |  | 		PreparePacket(&pkt); | 
					
						
							|  |  |  | 		error = avcodec_encode_video2(s_stream->codec, &pkt, nullptr, &got_packet); | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 	if (error) | 
					
						
							|  |  |  | 		ERROR_LOG(VIDEO, "Error while encoding video: %d", error); | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AVIDump::Stop() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	av_write_trailer(s_format_context); | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 	CloseFile(); | 
					
						
							|  |  |  | 	NOTICE_LOG(VIDEO, "Stopping frame dump"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AVIDump::CloseFile() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	if (s_stream) | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 		if (s_stream->codec) | 
					
						
							|  |  |  | 			avcodec_close(s_stream->codec); | 
					
						
							|  |  |  | 		av_free(s_stream); | 
					
						
							|  |  |  | 		s_stream = nullptr; | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	if (s_yuv_buffer) | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 		delete[] s_yuv_buffer; | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 		s_yuv_buffer = nullptr; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-24 04:12:15 +02:00
										 |  |  | 	av_frame_free(&s_src_frame); | 
					
						
							|  |  |  | 	av_frame_free(&s_scaled_frame); | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 	if (s_format_context) | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2014-06-15 05:29:05 +02:00
										 |  |  | 		if (s_format_context->pb) | 
					
						
							|  |  |  | 			avio_close(s_format_context->pb); | 
					
						
							|  |  |  | 		av_free(s_format_context); | 
					
						
							|  |  |  | 		s_format_context = nullptr; | 
					
						
							| 
									
										
										
										
											2010-11-18 16:46:17 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-06-15 05:16:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (s_sws_context) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		sws_freeContext(s_sws_context); | 
					
						
							|  |  |  | 		s_sws_context = nullptr; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-11-14 21:14:26 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-26 02:35:29 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | void AVIDump::DoState() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	s_last_frame = CoreTiming::GetTicks(); | 
					
						
							|  |  |  | } |