ppsspp/Core/AVIDump.cpp

337 lines
9.2 KiB
C++
Raw Normal View History

2016-08-27 18:38:05 +00:00
// Copyright 2009 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
2016-09-04 16:52:14 +00:00
#ifndef MOBILE_DEVICE
2017-02-24 23:25:46 +00:00
2016-08-27 18:38:05 +00:00
#if defined(__FreeBSD__)
#define __STDC_CONSTANT_MACROS 1
#endif
#include <string>
2016-10-11 05:01:20 +00:00
#include <cstdint>
2016-08-27 18:38:05 +00:00
#include <sstream>
2017-02-24 23:25:46 +00:00
#ifdef USE_FFMPEG
2016-08-27 18:38:05 +00:00
extern "C" {
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavutil/mathematics.h>
#include <libswscale/swscale.h>
}
2017-02-24 23:25:46 +00:00
#endif
#include "Common/Data/Convert/ColorConv.h"
#include "Common/File/FileUtil.h"
#include "Common/File/Path.h"
2016-08-27 18:38:05 +00:00
#include "Core/Config.h"
#include "Core/AVIDump.h"
#include "Core/System.h"
#include "Core/Screenshot.h"
#include "GPU/Common/GPUDebugInterface.h"
#include "Core/ELF/ParamSFO.h"
#include "Core/HLE/sceKernelTime.h"
#include "StringUtils.h"
2017-02-24 23:25:46 +00:00
#ifdef USE_FFMPEG
2016-08-27 18:38:05 +00: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
#include "FFMPEGCompat.h"
static AVFormatContext *s_format_context = nullptr;
static AVCodecContext *s_codec_context = nullptr;
static AVStream *s_stream = nullptr;
static AVFrame *s_src_frame = nullptr;
static AVFrame *s_scaled_frame = nullptr;
static SwsContext *s_sws_context = nullptr;
2017-02-24 23:25:46 +00:00
#endif
static int s_bytes_per_pixel;
2016-08-27 18:38:05 +00:00
static int s_width;
static int s_height;
static bool s_start_dumping = false;
static int s_current_width;
static int s_current_height;
static int s_file_index = 0;
2016-09-03 22:26:01 +00:00
static GPUDebugBuffer buf;
2016-08-27 18:38:05 +00:00
2017-02-24 23:25:46 +00:00
static void InitAVCodec() {
2016-08-27 18:38:05 +00:00
static bool first_run = true;
2017-02-24 23:25:46 +00:00
if (first_run) {
#ifdef USE_FFMPEG
#if LIBAVFORMAT_VERSION_INT < AV_VERSION_INT(58, 12, 100)
2016-08-27 18:38:05 +00:00
av_register_all();
#endif
2017-02-24 23:25:46 +00:00
#endif
2016-08-27 18:38:05 +00:00
first_run = false;
}
}
bool AVIDump::Start(int w, int h)
{
s_width = w;
s_height = h;
s_current_width = w;
s_current_height = h;
InitAVCodec();
bool success = CreateAVI();
if (!success)
CloseFile();
return success;
}
2017-02-24 23:25:46 +00:00
bool AVIDump::CreateAVI() {
#ifdef USE_FFMPEG
AVCodec *codec = nullptr;
2016-08-27 18:38:05 +00:00
// Use gameID_EmulatedTimestamp for filename
std::string discID = g_paramSFO.GetDiscID();
Path video_file_name = GetSysDirectory(DIRECTORY_VIDEO) / StringFromFormat("%s_%s.avi", discID.c_str(), KernelTimeNowFormatted().c_str());
2016-08-27 18:38:05 +00:00
s_format_context = avformat_alloc_context();
#if LIBAVFORMAT_VERSION_INT >= AV_VERSION_INT(58, 7, 0)
char *filename = av_strdup(video_file_name.c_str());
// Freed when the context is freed.
s_format_context->url = filename;
#else
const char *filename = s_format_context->filename;
snprintf(s_format_context->filename, sizeof(s_format_context->filename), "%s", video_file_name.c_str());
#endif
INFO_LOG(Log::Common, "Recording Video to: %s", video_file_name.ToVisualString().c_str());
2016-08-27 18:38:05 +00:00
// Make sure that the path exists
2016-09-03 22:26:01 +00:00
if (!File::Exists(GetSysDirectory(DIRECTORY_VIDEO)))
File::CreateDir(GetSysDirectory(DIRECTORY_VIDEO));
2016-08-27 18:38:05 +00:00
if (File::Exists(video_file_name))
File::Delete(video_file_name);
2016-08-27 18:38:05 +00:00
s_format_context->oformat = av_guess_format("avi", nullptr, nullptr);
if (!s_format_context->oformat)
return false;
s_stream = avformat_new_stream(s_format_context, codec);
if (!s_stream)
2016-08-27 18:38:05 +00:00
return false;
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(57, 48, 101)
s_codec_context = s_stream->codec;
#else
s_codec_context = avcodec_alloc_context3(codec);
#endif
s_codec_context->codec_id = g_Config.bUseFFV1 ? AV_CODEC_ID_FFV1 : s_format_context->oformat->video_codec;
2016-08-27 18:38:05 +00:00
if (!g_Config.bUseFFV1)
s_codec_context->codec_tag = MKTAG('X', 'V', 'I', 'D'); // Force XVID FourCC for better compatibility
s_codec_context->codec_type = AVMEDIA_TYPE_VIDEO;
s_codec_context->bit_rate = 400000;
s_codec_context->width = s_width;
s_codec_context->height = s_height;
s_codec_context->time_base.num = 1001;
s_codec_context->time_base.den = 60000;
s_codec_context->gop_size = 12;
s_codec_context->pix_fmt = g_Config.bUseFFV1 ? AV_PIX_FMT_BGRA : AV_PIX_FMT_YUV420P;
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 48, 101)
if (avcodec_parameters_from_context(s_stream->codecpar, s_codec_context) < 0)
return false;
#endif
codec = avcodec_find_encoder(s_codec_context->codec_id);
if (!codec)
return false;
if (avcodec_open2(s_codec_context, codec, nullptr) < 0)
2016-08-27 18:38:05 +00:00
return false;
s_src_frame = av_frame_alloc();
s_scaled_frame = av_frame_alloc();
s_scaled_frame->format = s_codec_context->pix_fmt;
2016-08-27 18:38:05 +00:00
s_scaled_frame->width = s_width;
s_scaled_frame->height = s_height;
#if LIBAVCODEC_VERSION_MAJOR >= 55
if (av_frame_get_buffer(s_scaled_frame, 1))
return false;
#else
if (avcodec_default_get_buffer(s_codec_context, s_scaled_frame))
2016-08-27 18:38:05 +00:00
return false;
#endif
NOTICE_LOG(Log::G3D, "Opening file %s for dumping", filename);
if (avio_open(&s_format_context->pb, filename, AVIO_FLAG_WRITE) < 0 || avformat_write_header(s_format_context, nullptr)) {
WARN_LOG(Log::G3D, "Could not open %s", filename);
2016-08-27 18:38:05 +00:00
return false;
}
return true;
2017-02-24 23:25:46 +00:00
#else
return false;
#endif
2016-08-27 18:38:05 +00:00
}
2017-02-24 23:25:46 +00:00
#ifdef USE_FFMPEG
static void PreparePacket(AVPacket* pkt) {
2016-08-27 18:38:05 +00:00
av_init_packet(pkt);
pkt->data = nullptr;
pkt->size = 0;
}
2017-02-24 23:25:46 +00:00
#endif
void AVIDump::AddFrame() {
u32 w = 0;
u32 h = 0;
if (g_Config.bDumpVideoOutput) {
gpuDebug->GetOutputFramebuffer(buf);
w = buf.GetStride();
h = buf.GetHeight();
} else {
gpuDebug->GetCurrentFramebuffer(buf, GPU_DBG_FRAMEBUF_RENDER);
w = PSP_CoreParameter().renderWidth;
h = PSP_CoreParameter().renderHeight;
}
2016-08-27 18:38:05 +00:00
CheckResolution(w, h);
u8 *flipbuffer = nullptr;
2017-12-22 07:47:49 +00:00
const u8 *buffer = ConvertBufferToScreenshot(buf, false, flipbuffer, w, h);
2017-02-24 23:25:46 +00:00
#ifdef USE_FFMPEG
2016-08-27 18:38:05 +00:00
s_src_frame->data[0] = const_cast<u8*>(buffer);
s_src_frame->linesize[0] = w * 3;
s_src_frame->format = AV_PIX_FMT_RGB24;
s_src_frame->width = s_width;
s_src_frame->height = s_height;
2016-09-03 22:26:01 +00:00
// Convert image from BGR24 to desired pixel format, and scale to initial width and height
if ((s_sws_context = sws_getCachedContext(s_sws_context, w, h, AV_PIX_FMT_RGB24, s_width, s_height, s_codec_context->pix_fmt, SWS_BICUBIC, nullptr, nullptr, nullptr))) {
2016-09-03 22:26:01 +00:00
sws_scale(s_sws_context, s_src_frame->data, s_src_frame->linesize, 0, h, s_scaled_frame->data, s_scaled_frame->linesize);
2016-08-27 18:38:05 +00:00
}
s_scaled_frame->format = s_codec_context->pix_fmt;
2016-08-27 18:38:05 +00:00
s_scaled_frame->width = s_width;
s_scaled_frame->height = s_height;
// Encode and write the image.
AVPacket pkt;
PreparePacket(&pkt);
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 48, 101)
int error = avcodec_send_frame(s_codec_context, s_scaled_frame);
int got_packet = 0;
if (avcodec_receive_packet(s_codec_context, &pkt) >= 0) {
got_packet = 1;
}
#else
2016-08-27 18:38:05 +00:00
int got_packet;
int error = avcodec_encode_video2(s_codec_context, &pkt, s_scaled_frame, &got_packet);
#endif
while (error >= 0 && got_packet) {
2016-08-27 18:38:05 +00:00
// 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);
2016-08-27 18:38:05 +00:00
}
if (pkt.dts != (s64)AV_NOPTS_VALUE) {
pkt.dts = av_rescale_q(pkt.dts, s_codec_context->time_base, s_stream->time_base);
2016-08-27 18:38:05 +00:00
}
#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(56, 60, 100)
if (s_codec_context->coded_frame->key_frame)
2016-08-27 18:38:05 +00:00
pkt.flags |= AV_PKT_FLAG_KEY;
#endif
pkt.stream_index = s_stream->index;
av_interleaved_write_frame(s_format_context, &pkt);
// Handle delayed frames.
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 48, 101)
av_packet_unref(&pkt);
error = avcodec_receive_packet(s_codec_context, &pkt);
got_packet = error >= 0 ? 1 : 0;
#else
2016-08-27 18:38:05 +00:00
PreparePacket(&pkt);
error = avcodec_encode_video2(s_codec_context, &pkt, nullptr, &got_packet);
#endif
2016-08-27 18:38:05 +00:00
}
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 48, 101)
av_packet_unref(&pkt);
if (error < 0 && error != AVERROR(EAGAIN) && error != AVERROR_EOF)
ERROR_LOG(Log::G3D, "Error while encoding video: %d", error);
#else
if (error < 0)
ERROR_LOG(Log::G3D, "Error while encoding video: %d", error);
#endif
2017-02-24 23:25:46 +00:00
#endif
2017-11-14 09:17:20 +00:00
delete[] flipbuffer;
2016-08-27 18:38:05 +00:00
}
2017-02-24 23:25:46 +00:00
void AVIDump::Stop() {
#ifdef USE_FFMPEG
2016-08-27 18:38:05 +00:00
av_write_trailer(s_format_context);
CloseFile();
s_file_index = 0;
2017-02-24 23:25:46 +00:00
#endif
NOTICE_LOG(Log::G3D, "Stopping frame dump");
2016-08-27 18:38:05 +00:00
}
2017-02-24 23:25:46 +00:00
void AVIDump::CloseFile() {
#ifdef USE_FFMPEG
if (s_codec_context) {
2016-08-27 18:38:05 +00:00
#if LIBAVCODEC_VERSION_MAJOR < 55
avcodec_default_release_buffer(s_codec_context, s_src_frame);
#endif
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(57, 48, 101)
avcodec_free_context(&s_codec_context);
#else
avcodec_close(s_codec_context);
s_codec_context = nullptr;
2016-08-27 18:38:05 +00:00
#endif
}
av_freep(&s_stream);
2016-08-27 18:38:05 +00:00
av_frame_free(&s_src_frame);
av_frame_free(&s_scaled_frame);
if (s_format_context)
{
if (s_format_context->pb)
avio_close(s_format_context->pb);
av_freep(&s_format_context);
}
if (s_sws_context)
{
sws_freeContext(s_sws_context);
s_sws_context = nullptr;
}
2017-02-24 23:25:46 +00:00
#endif
2016-08-27 18:38:05 +00:00
}
2017-02-24 23:25:46 +00:00
void AVIDump::CheckResolution(int width, int height) {
#ifdef USE_FFMPEG
2016-08-27 18:38:05 +00:00
// We check here to see if the requested width and height have changed since the last frame which
2016-09-03 22:26:01 +00:00
// was dumped, then create a new file accordingly. However, is it possible for the width and height
// to have a value of zero. If this is the case, simply keep the last known resolution of the video
// for the added frame.
2016-08-27 18:38:05 +00:00
if ((width != s_current_width || height != s_current_height) && (width > 0 && height > 0))
{
int temp_file_index = s_file_index;
Stop();
s_file_index = temp_file_index + 1;
Start(width, height);
s_current_width = width;
s_current_height = height;
}
2017-03-10 17:02:41 +00:00
#endif // USE_FFMPEG
2016-08-27 18:38:05 +00:00
}
2016-09-04 16:52:14 +00:00
#endif