2020-07-12 05:07:01 +02:00
|
|
|
|
using FFmpeg.AutoGen;
|
2021-05-05 23:30:29 +02:00
|
|
|
|
using Ryujinx.Common.Logging;
|
2020-07-12 05:07:01 +02:00
|
|
|
|
using System;
|
2021-05-20 18:28:18 +02:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.IO;
|
2021-05-05 23:30:29 +02:00
|
|
|
|
using System.Runtime.InteropServices;
|
2020-07-12 05:07:01 +02:00
|
|
|
|
|
2021-10-12 22:55:57 +02:00
|
|
|
|
namespace Ryujinx.Graphics.Nvdec.FFmpeg
|
2020-07-12 05:07:01 +02:00
|
|
|
|
{
|
|
|
|
|
unsafe class FFmpegContext : IDisposable
|
|
|
|
|
{
|
2021-10-12 22:55:57 +02:00
|
|
|
|
private readonly AVCodec_decode _decodeFrame;
|
2021-09-29 00:43:40 +02:00
|
|
|
|
private static readonly av_log_set_callback_callback _logFunc;
|
2020-07-12 05:07:01 +02:00
|
|
|
|
private readonly AVCodec* _codec;
|
2021-05-02 22:08:35 +02:00
|
|
|
|
private AVPacket* _packet;
|
2020-07-12 05:07:01 +02:00
|
|
|
|
private AVCodecContext* _context;
|
|
|
|
|
|
2021-10-12 22:55:57 +02:00
|
|
|
|
public FFmpegContext(AVCodecID codecId)
|
2020-07-12 05:07:01 +02:00
|
|
|
|
{
|
2021-10-12 22:55:57 +02:00
|
|
|
|
_codec = ffmpeg.avcodec_find_decoder(codecId);
|
2022-01-03 12:38:21 +01:00
|
|
|
|
if (_codec == null)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error?.PrintMsg(LogClass.FFmpeg, $"Codec wasn't found. Make sure you have the {codecId} codec present in your FFmpeg installation.");
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-12 05:07:01 +02:00
|
|
|
|
_context = ffmpeg.avcodec_alloc_context3(_codec);
|
2022-01-03 12:38:21 +01:00
|
|
|
|
if (_context == null)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error?.PrintMsg(LogClass.FFmpeg, "Codec context couldn't be allocated.");
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-07-12 05:07:01 +02:00
|
|
|
|
|
2022-01-03 12:38:21 +01:00
|
|
|
|
if (ffmpeg.avcodec_open2(_context, _codec, null) != 0)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error?.PrintMsg(LogClass.FFmpeg, "Codec couldn't be opened.");
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-05-02 22:08:35 +02:00
|
|
|
|
|
|
|
|
|
_packet = ffmpeg.av_packet_alloc();
|
2022-01-03 12:38:21 +01:00
|
|
|
|
if (_packet == null)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error?.PrintMsg(LogClass.FFmpeg, "Packet couldn't be allocated.");
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-09-29 00:43:40 +02:00
|
|
|
|
|
2021-10-12 22:55:57 +02:00
|
|
|
|
_decodeFrame = Marshal.GetDelegateForFunctionPointer<AVCodec_decode>(_codec->decode.Pointer);
|
2020-07-12 05:07:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-20 18:28:18 +02:00
|
|
|
|
static FFmpegContext()
|
|
|
|
|
{
|
|
|
|
|
SetRootPath();
|
2021-09-29 00:43:40 +02:00
|
|
|
|
|
|
|
|
|
_logFunc = Log;
|
|
|
|
|
|
|
|
|
|
// Redirect log output.
|
|
|
|
|
ffmpeg.av_log_set_level(ffmpeg.AV_LOG_MAX_OFFSET);
|
|
|
|
|
ffmpeg.av_log_set_callback(_logFunc);
|
2021-05-20 18:28:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void SetRootPath()
|
|
|
|
|
{
|
|
|
|
|
if (OperatingSystem.IsLinux())
|
|
|
|
|
{
|
|
|
|
|
// Configure FFmpeg search path
|
|
|
|
|
Process lddProcess = Process.Start(new ProcessStartInfo
|
|
|
|
|
{
|
|
|
|
|
FileName = "/bin/sh",
|
|
|
|
|
Arguments = "-c \"ldd $(which ffmpeg 2>/dev/null) | grep libavfilter\" 2>/dev/null",
|
|
|
|
|
UseShellExecute = false,
|
|
|
|
|
RedirectStandardOutput = true
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
string lddOutput = lddProcess.StandardOutput.ReadToEnd();
|
|
|
|
|
|
|
|
|
|
lddProcess.WaitForExit();
|
|
|
|
|
lddProcess.Close();
|
|
|
|
|
|
|
|
|
|
if (lddOutput.Contains(" => "))
|
|
|
|
|
{
|
|
|
|
|
ffmpeg.RootPath = Path.GetDirectoryName(lddOutput.Split(" => ")[1]);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Logger.Error?.PrintMsg(LogClass.FFmpeg, "FFmpeg wasn't found. Make sure that you have it installed and up to date.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-29 00:43:40 +02:00
|
|
|
|
private static void Log(void* p0, int level, string format, byte* vl)
|
2021-05-05 23:30:29 +02:00
|
|
|
|
{
|
|
|
|
|
if (level > ffmpeg.av_log_get_level())
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int lineSize = 1024;
|
|
|
|
|
byte* lineBuffer = stackalloc byte[lineSize];
|
|
|
|
|
int printPrefix = 1;
|
|
|
|
|
|
|
|
|
|
ffmpeg.av_log_format_line(p0, level, format, vl, lineBuffer, lineSize, &printPrefix);
|
|
|
|
|
|
|
|
|
|
string line = Marshal.PtrToStringAnsi((IntPtr)lineBuffer).Trim();
|
|
|
|
|
|
|
|
|
|
switch (level)
|
|
|
|
|
{
|
|
|
|
|
case ffmpeg.AV_LOG_PANIC:
|
|
|
|
|
case ffmpeg.AV_LOG_FATAL:
|
|
|
|
|
case ffmpeg.AV_LOG_ERROR:
|
|
|
|
|
Logger.Error?.Print(LogClass.FFmpeg, line);
|
|
|
|
|
break;
|
|
|
|
|
case ffmpeg.AV_LOG_WARNING:
|
|
|
|
|
Logger.Warning?.Print(LogClass.FFmpeg, line);
|
|
|
|
|
break;
|
|
|
|
|
case ffmpeg.AV_LOG_INFO:
|
|
|
|
|
Logger.Info?.Print(LogClass.FFmpeg, line);
|
|
|
|
|
break;
|
|
|
|
|
case ffmpeg.AV_LOG_VERBOSE:
|
|
|
|
|
case ffmpeg.AV_LOG_DEBUG:
|
|
|
|
|
case ffmpeg.AV_LOG_TRACE:
|
|
|
|
|
Logger.Debug?.Print(LogClass.FFmpeg, line);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-12 05:07:01 +02:00
|
|
|
|
public int DecodeFrame(Surface output, ReadOnlySpan<byte> bitstream)
|
|
|
|
|
{
|
2021-10-04 19:12:24 +02:00
|
|
|
|
ffmpeg.av_frame_unref(output.Frame);
|
|
|
|
|
|
2021-09-29 00:43:40 +02:00
|
|
|
|
int result;
|
|
|
|
|
int gotFrame;
|
2020-07-12 05:07:01 +02:00
|
|
|
|
|
|
|
|
|
fixed (byte* ptr = bitstream)
|
|
|
|
|
{
|
2021-05-02 22:08:35 +02:00
|
|
|
|
_packet->data = ptr;
|
|
|
|
|
_packet->size = bitstream.Length;
|
2021-10-12 22:55:57 +02:00
|
|
|
|
result = _decodeFrame(_context, output.Frame, &gotFrame, _packet);
|
2021-09-29 00:43:40 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (gotFrame == 0)
|
|
|
|
|
{
|
|
|
|
|
ffmpeg.av_frame_unref(output.Frame);
|
2020-07-12 05:07:01 +02:00
|
|
|
|
|
2021-09-29 00:43:40 +02:00
|
|
|
|
// If the frame was not delivered, it was probably delayed.
|
|
|
|
|
// Get the next delayed frame by passing a 0 length packet.
|
|
|
|
|
_packet->data = null;
|
|
|
|
|
_packet->size = 0;
|
2021-10-12 22:55:57 +02:00
|
|
|
|
result = _decodeFrame(_context, output.Frame, &gotFrame, _packet);
|
2020-07-12 05:07:01 +02:00
|
|
|
|
|
2021-09-29 00:43:40 +02:00
|
|
|
|
// We need to set B frames to 0 as we already consumed all delayed frames.
|
|
|
|
|
// This prevents the decoder from trying to return a delayed frame next time.
|
|
|
|
|
_context->has_b_frames = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ffmpeg.av_packet_unref(_packet);
|
|
|
|
|
|
|
|
|
|
if (gotFrame == 0)
|
|
|
|
|
{
|
|
|
|
|
ffmpeg.av_frame_unref(output.Frame);
|
2021-10-12 22:55:57 +02:00
|
|
|
|
|
2021-09-29 00:43:40 +02:00
|
|
|
|
return -1;
|
2020-07-12 05:07:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-09-29 00:43:40 +02:00
|
|
|
|
return result < 0 ? result : 0;
|
2020-07-12 05:07:01 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
2021-05-02 22:08:35 +02:00
|
|
|
|
fixed (AVPacket** ppPacket = &_packet)
|
|
|
|
|
{
|
|
|
|
|
ffmpeg.av_packet_free(ppPacket);
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-12 05:07:01 +02:00
|
|
|
|
ffmpeg.avcodec_close(_context);
|
|
|
|
|
|
|
|
|
|
fixed (AVCodecContext** ppContext = &_context)
|
|
|
|
|
{
|
|
|
|
|
ffmpeg.avcodec_free_context(ppContext);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|