summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/AVIDump.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-01-29 22:01:05 -0500
committerLioncash <mathew1800@gmail.com>2017-01-29 22:05:12 -0500
commitb7e59f4e55fdd81c598d3f4d6395c38ecb76faad (patch)
tree27a92618f1131fc9a306c47cf2bf7ab2684180d1 /Source/Core/VideoCommon/AVIDump.cpp
parent548e2d6353b59d6eeaec3c9e891a8b79228a6eab (diff)
AVIDump: Rename CloseFile to CloseVideoFile
Retains symmetry with CreateVideoFile.
Diffstat (limited to 'Source/Core/VideoCommon/AVIDump.cpp')
-rw-r--r--Source/Core/VideoCommon/AVIDump.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/AVIDump.cpp b/Source/Core/VideoCommon/AVIDump.cpp
index 20494ba882..6e26d3a99f 100644
--- a/Source/Core/VideoCommon/AVIDump.cpp
+++ b/Source/Core/VideoCommon/AVIDump.cpp
@@ -73,7 +73,7 @@ bool AVIDump::Start(int w, int h)
bool success = CreateVideoFile();
if (!success)
{
- CloseFile();
+ CloseVideoFile();
OSD::AddMessage("AVIDump Start failed");
}
return success;
@@ -257,13 +257,13 @@ void AVIDump::AddFrame(const u8* data, int width, int height, int stride, const
void AVIDump::Stop()
{
av_write_trailer(s_format_context);
- CloseFile();
+ CloseVideoFile();
s_file_index = 0;
NOTICE_LOG(VIDEO, "Stopping frame dump");
OSD::AddMessage("Stopped dumping frames");
}
-void AVIDump::CloseFile()
+void AVIDump::CloseVideoFile()
{
if (s_stream)
{