2020-07-12 03:07:01 +00:00
|
|
|
|
using FFmpeg.AutoGen;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Nvdec.H264
|
|
|
|
|
{
|
|
|
|
|
unsafe class FFmpegContext : IDisposable
|
|
|
|
|
{
|
|
|
|
|
private readonly AVCodec* _codec;
|
2021-05-02 20:08:35 +00:00
|
|
|
|
private AVPacket* _packet;
|
2020-07-12 03:07:01 +00:00
|
|
|
|
private AVCodecContext* _context;
|
|
|
|
|
|
|
|
|
|
public FFmpegContext()
|
|
|
|
|
{
|
|
|
|
|
_codec = ffmpeg.avcodec_find_decoder(AVCodecID.AV_CODEC_ID_H264);
|
|
|
|
|
_context = ffmpeg.avcodec_alloc_context3(_codec);
|
|
|
|
|
|
|
|
|
|
ffmpeg.avcodec_open2(_context, _codec, null);
|
2021-05-02 20:08:35 +00:00
|
|
|
|
|
|
|
|
|
_packet = ffmpeg.av_packet_alloc();
|
2020-07-12 03:07:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int DecodeFrame(Surface output, ReadOnlySpan<byte> bitstream)
|
|
|
|
|
{
|
2021-05-02 20:08:35 +00:00
|
|
|
|
// Ensure the packet is clean before proceeding
|
|
|
|
|
ffmpeg.av_packet_unref(_packet);
|
2020-07-12 03:07:01 +00:00
|
|
|
|
|
|
|
|
|
fixed (byte* ptr = bitstream)
|
|
|
|
|
{
|
2021-05-02 20:08:35 +00:00
|
|
|
|
_packet->data = ptr;
|
|
|
|
|
_packet->size = bitstream.Length;
|
2020-07-12 03:07:01 +00:00
|
|
|
|
|
2021-05-02 20:08:35 +00:00
|
|
|
|
int rc = ffmpeg.avcodec_send_packet(_context, _packet);
|
2020-07-12 03:07:01 +00:00
|
|
|
|
|
|
|
|
|
if (rc != 0)
|
|
|
|
|
{
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ffmpeg.avcodec_receive_frame(_context, output.Frame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
2021-05-02 20:08:35 +00:00
|
|
|
|
fixed (AVPacket** ppPacket = &_packet)
|
|
|
|
|
{
|
|
|
|
|
ffmpeg.av_packet_free(ppPacket);
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-12 03:07:01 +00:00
|
|
|
|
ffmpeg.avcodec_close(_context);
|
|
|
|
|
|
|
|
|
|
fixed (AVCodecContext** ppContext = &_context)
|
|
|
|
|
{
|
|
|
|
|
ffmpeg.avcodec_free_context(ppContext);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|