mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-12-16 13:48:56 +00:00
35f659918f
Signed-off-by: Matthias Reichl <hias@horus.com>
50 lines
2.4 KiB
Diff
50 lines
2.4 KiB
Diff
From e36845fd7e48b364f68a43bd8c66e06a570a6f4c Mon Sep 17 00:00:00 2001
|
|
From: Dom Cobley <popcornmix@gmail.com>
|
|
Date: Wed, 18 Jan 2023 16:41:00 +0000
|
|
Subject: [PATCH 03/12] CDVDVideoCodecDRMPRIME: Adjust av formats to match
|
|
recent ffmpeg changes
|
|
|
|
---
|
|
.../VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp | 6 ++++--
|
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
|
index 90f1fb07a9..169e8544de 100644
|
|
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
|
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
|
@@ -355,6 +355,7 @@ bool CDVDVideoCodecDRMPRIME::Open(CDVDStreamInfo& hints, CDVDCodecOptions& optio
|
|
m_pCodecContext->bits_per_coded_sample = hints.bitsperpixel;
|
|
m_pCodecContext->time_base.num = 1;
|
|
m_pCodecContext->time_base.den = DVD_TIME_BASE;
|
|
+ m_pCodecContext->thread_safe_callbacks = 1;
|
|
m_pCodecContext->thread_count = CServiceBroker::GetCPUInfo()->GetCPUCount();
|
|
|
|
if (hints.extradata)
|
|
@@ -700,13 +701,13 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
|
|
|
const AVFilter* srcFilter = avfilter_get_by_name("buffer");
|
|
const AVFilter* outFilter = avfilter_get_by_name("buffersink");
|
|
- enum AVPixelFormat pix_fmts[] = { AV_PIX_FMT_DRM_PRIME, AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE };
|
|
+ enum AVPixelFormat pix_fmts[] = { AV_PIX_FMT_DRM_PRIME, AV_PIX_FMT_NONE };
|
|
|
|
std::string args = StringUtils::Format("video_size={}x{}:pix_fmt={}:time_base={}/{}:"
|
|
"pixel_aspect={}/{}",
|
|
m_pCodecContext->width,
|
|
m_pCodecContext->height,
|
|
- m_pCodecContext->pix_fmt,
|
|
+ AV_PIX_FMT_DRM_PRIME,
|
|
m_pCodecContext->time_base.num ?
|
|
m_pCodecContext->time_base.num : 1,
|
|
m_pCodecContext->time_base.num ?
|
|
@@ -858,6 +859,7 @@ CDVDVideoCodec::VCReturn CDVDVideoCodecDRMPRIME::ProcessFilterIn()
|
|
m_pFrame->data[0] = reinterpret_cast<uint8_t*>(descriptor);
|
|
}
|
|
|
|
+ m_pFrame->format = AV_PIX_FMT_DRM_PRIME;
|
|
int ret = av_buffersrc_add_frame(m_pFilterIn, m_pFrame);
|
|
if (ret < 0)
|
|
{
|
|
--
|
|
2.39.2
|
|
|