summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorMarkus Wick <degasus@users.noreply.github.com>2017-03-08 11:01:53 +0100
committerGitHub <noreply@github.com>2017-03-08 11:01:53 +0100
commit9c1eac1f4f8231ee024fa9c3679e89f768dafa99 (patch)
tree28ee7369255e4e917ee5d97e15a8df2cdb88667b /Source/Core
parenta911d256a7c30ba68e6f81dda82b1b70c21516f6 (diff)
parent096f58b172804acacd79a199458ef373a04ee2e1 (diff)
Merge pull request #4944 from vladfi1/framedump
Framedump extensions
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/VideoCommon/AVIDump.cpp140
-rw-r--r--Source/Core/VideoCommon/VideoConfig.cpp6
-rw-r--r--Source/Core/VideoCommon/VideoConfig.h3
3 files changed, 110 insertions, 39 deletions
diff --git a/Source/Core/VideoCommon/AVIDump.cpp b/Source/Core/VideoCommon/AVIDump.cpp
index d50f5b4b8d..dc4e806f6a 100644
--- a/Source/Core/VideoCommon/AVIDump.cpp
+++ b/Source/Core/VideoCommon/AVIDump.cpp
@@ -58,6 +58,7 @@ static void InitAVCodec()
if (first_run)
{
av_register_all();
+ avformat_network_init();
first_run = false;
}
}
@@ -94,49 +95,81 @@ bool AVIDump::Start(int w, int h)
return success;
}
-bool AVIDump::CreateVideoFile()
+static std::string GetDumpPath(const std::string& format)
{
- AVCodec* codec = nullptr;
+ if (!g_Config.sDumpPath.empty())
+ return g_Config.sDumpPath;
- s_format_context = avformat_alloc_context();
- std::stringstream s_file_index_str;
- s_file_index_str << s_file_index;
- snprintf(s_format_context->filename, sizeof(s_format_context->filename), "%s",
- (File::GetUserPath(D_DUMPFRAMES_IDX) + "framedump" + s_file_index_str.str() + ".avi")
- .c_str());
- File::CreateFullPath(s_format_context->filename);
+ std::string s_dump_path = File::GetUserPath(D_DUMPFRAMES_IDX) + "framedump" +
+ std::to_string(s_file_index) + "." + format;
// Ask to delete file
- if (File::Exists(s_format_context->filename))
+ if (File::Exists(s_dump_path))
{
if (SConfig::GetInstance().m_DumpFramesSilent ||
- AskYesNoT("Delete the existing file '%s'?", s_format_context->filename))
+ AskYesNoT("Delete the existing file '%s'?", s_dump_path.c_str()))
{
- File::Delete(s_format_context->filename);
+ File::Delete(s_dump_path);
}
else
{
// Stop and cancel dumping the video
- return false;
+ return "";
}
}
- if (!(s_format_context->oformat = av_guess_format("avi", nullptr, nullptr)))
+ return s_dump_path;
+}
+
+bool AVIDump::CreateVideoFile()
+{
+ const std::string& s_format = g_Config.sDumpFormat;
+
+ std::string s_dump_path = GetDumpPath(s_format);
+
+ if (s_dump_path.empty())
+ return false;
+
+ AVOutputFormat* output_format = av_guess_format(s_format.c_str(), s_dump_path.c_str(), nullptr);
+ if (!output_format)
+ {
+ ERROR_LOG(VIDEO, "Invalid format %s", s_format.c_str());
+ return false;
+ }
+
+ if (avformat_alloc_output_context2(&s_format_context, output_format, nullptr,
+ s_dump_path.c_str()) < 0)
{
+ ERROR_LOG(VIDEO, "Could not allocate output context");
return false;
}
- AVCodecID codec_id =
- g_Config.bUseFFV1 ? AV_CODEC_ID_FFV1 : s_format_context->oformat->video_codec;
+ const std::string& codec_name = g_Config.bUseFFV1 ? "ffv1" : g_Config.sDumpCodec;
+
+ AVCodecID codec_id = output_format->video_codec;
+
+ if (!codec_name.empty())
+ {
+ const AVCodecDescriptor* codec_desc = avcodec_descriptor_get_by_name(codec_name.c_str());
+ if (codec_desc)
+ codec_id = codec_desc->id;
+ else
+ WARN_LOG(VIDEO, "Invalid codec %s", codec_name.c_str());
+ }
+
+ const AVCodec* codec = nullptr;
+
if (!(codec = avcodec_find_encoder(codec_id)) ||
!(s_codec_context = avcodec_alloc_context3(codec)))
{
+ ERROR_LOG(VIDEO, "Could not find encoder or allocate codec context");
return false;
}
- if (!g_Config.bUseFFV1)
- s_codec_context->codec_tag =
- MKTAG('X', 'V', 'I', 'D'); // Force XVID FourCC for better compatibility
+ // Force XVID FourCC for better compatibility
+ if (codec->id == AV_CODEC_ID_MPEG4)
+ s_codec_context->codec_tag = MKTAG('X', 'V', 'I', 'D');
+
s_codec_context->codec_type = AVMEDIA_TYPE_VIDEO;
s_codec_context->bit_rate = g_Config.iBitrateKbps * 1000;
s_codec_context->width = s_width;
@@ -146,8 +179,12 @@ bool AVIDump::CreateVideoFile()
s_codec_context->gop_size = 12;
s_codec_context->pix_fmt = g_Config.bUseFFV1 ? AV_PIX_FMT_BGRA : AV_PIX_FMT_YUV420P;
+ if (output_format->flags & AVFMT_GLOBALHEADER)
+ s_codec_context->flags |= CODEC_FLAG_GLOBAL_HEADER;
+
if (avcodec_open2(s_codec_context, codec, nullptr) < 0)
{
+ ERROR_LOG(VIDEO, "Could not open codec");
return false;
}
@@ -169,6 +206,7 @@ bool AVIDump::CreateVideoFile()
if (!(s_stream = avformat_new_stream(s_format_context, codec)) ||
!AVStreamCopyContext(s_stream, s_codec_context))
{
+ ERROR_LOG(VIDEO, "Could not create stream");
return false;
}
@@ -176,7 +214,7 @@ bool AVIDump::CreateVideoFile()
if (avio_open(&s_format_context->pb, s_format_context->filename, AVIO_FLAG_WRITE) < 0 ||
avformat_write_header(s_format_context, nullptr))
{
- WARN_LOG(VIDEO, "Could not open %s", s_format_context->filename);
+ ERROR_LOG(VIDEO, "Could not open %s", s_format_context->filename);
return false;
}
@@ -224,6 +262,25 @@ static int SendFrameAndReceivePacket(AVCodecContext* avctx, AVPacket* pkt, AVFra
#endif
}
+static void WritePacket(AVPacket& pkt)
+{
+ // Write the compressed frame in the media file.
+ if (pkt.pts != (s64)AV_NOPTS_VALUE)
+ {
+ pkt.pts = av_rescale_q(pkt.pts, s_codec_context->time_base, s_stream->time_base);
+ }
+ if (pkt.dts != (s64)AV_NOPTS_VALUE)
+ {
+ pkt.dts = av_rescale_q(pkt.dts, s_codec_context->time_base, s_stream->time_base);
+ }
+#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(56, 60, 100)
+ if (s_codec_context->coded_frame->key_frame)
+ pkt.flags |= AV_PKT_FLAG_KEY;
+#endif
+ pkt.stream_index = s_stream->index;
+ av_interleaved_write_frame(s_format_context, &pkt);
+}
+
void AVIDump::AddFrame(const u8* data, int width, int height, int stride, const Frame& state)
{
// Assume that the timing is valid, if the savestate id of the new frame
@@ -284,34 +341,39 @@ void AVIDump::AddFrame(const u8* data, int width, int height, int stride, const
s_last_pts = pts_in_ticks;
error = SendFrameAndReceivePacket(s_codec_context, &pkt, s_scaled_frame, &got_packet);
}
- while (!error && got_packet)
+ if (!error && got_packet)
{
- // Write the compressed frame in the media file.
- if (pkt.pts != (s64)AV_NOPTS_VALUE)
- {
- pkt.pts = av_rescale_q(pkt.pts, s_codec_context->time_base, s_stream->time_base);
- }
- if (pkt.dts != (s64)AV_NOPTS_VALUE)
+ WritePacket(pkt);
+ }
+ if (error)
+ ERROR_LOG(VIDEO, "Error while encoding video: %d", error);
+}
+
+static void HandleDelayedPackets()
+{
+ AVPacket pkt;
+
+ while (true)
+ {
+ PreparePacket(&pkt);
+ int got_packet;
+ int error = ReceivePacket(s_codec_context, &pkt, &got_packet);
+ if (error)
{
- pkt.dts = av_rescale_q(pkt.dts, s_codec_context->time_base, s_stream->time_base);
+ ERROR_LOG(VIDEO, "Error while stopping video: %d", error);
+ break;
}
-#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(56, 60, 100)
- if (s_codec_context->coded_frame->key_frame)
- pkt.flags |= AV_PKT_FLAG_KEY;
-#endif
- pkt.stream_index = s_stream->index;
- av_interleaved_write_frame(s_format_context, &pkt);
- // Handle delayed frames.
- PreparePacket(&pkt);
- error = ReceivePacket(s_codec_context, &pkt, &got_packet);
+ if (!got_packet)
+ break;
+
+ WritePacket(pkt);
}
- if (error)
- ERROR_LOG(VIDEO, "Error while encoding video: %d", error);
}
void AVIDump::Stop()
{
+ HandleDelayedPackets();
av_write_trailer(s_format_context);
CloseVideoFile();
s_file_index = 0;
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp
index 96f35a0640..1f3d3d10ea 100644
--- a/Source/Core/VideoCommon/VideoConfig.cpp
+++ b/Source/Core/VideoCommon/VideoConfig.cpp
@@ -75,6 +75,9 @@ void VideoConfig::Load(const std::string& ini_file)
settings->Get("DumpFramesAsImages", &bDumpFramesAsImages, false);
settings->Get("FreeLook", &bFreeLook, false);
settings->Get("UseFFV1", &bUseFFV1, false);
+ settings->Get("DumpFormat", &sDumpFormat, "avi");
+ settings->Get("DumpCodec", &sDumpCodec, "");
+ settings->Get("DumpPath", &sDumpPath, "");
settings->Get("BitrateKbps", &iBitrateKbps, 2500);
settings->Get("InternalResolutionFrameDumps", &bInternalResolutionFrameDumps, false);
settings->Get("EnablePixelLighting", &bEnablePixelLighting, false);
@@ -295,6 +298,9 @@ void VideoConfig::Save(const std::string& ini_file)
settings->Set("DumpFramesAsImages", bDumpFramesAsImages);
settings->Set("FreeLook", bFreeLook);
settings->Set("UseFFV1", bUseFFV1);
+ settings->Set("DumpFormat", sDumpFormat);
+ settings->Set("DumpCodec", sDumpCodec);
+ settings->Set("DumpPath", sDumpPath);
settings->Set("BitrateKbps", iBitrateKbps);
settings->Set("InternalResolutionFrameDumps", bInternalResolutionFrameDumps);
settings->Set("EnablePixelLighting", bEnablePixelLighting);
diff --git a/Source/Core/VideoCommon/VideoConfig.h b/Source/Core/VideoCommon/VideoConfig.h
index ce80525a86..dfab8bbcc3 100644
--- a/Source/Core/VideoCommon/VideoConfig.h
+++ b/Source/Core/VideoCommon/VideoConfig.h
@@ -102,6 +102,9 @@ struct VideoConfig final
bool bDumpEFBTarget;
bool bDumpFramesAsImages;
bool bUseFFV1;
+ std::string sDumpCodec;
+ std::string sDumpFormat;
+ std::string sDumpPath;
bool bInternalResolutionFrameDumps;
bool bFreeLook;
bool bBorderlessFullscreen;