mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
kodi: update drmprime-filter patches
Signed-off-by: Matthias Reichl <hias@horus.com>
This commit is contained in:
parent
c1bc92913b
commit
b896f4385a
@ -1,4 +1,4 @@
|
|||||||
From a90ad221abf77aa38d34b52edf21a43f85aedac2 Mon Sep 17 00:00:00 2001
|
From 3f4e5cd94c1ad7e9361f68f04dba23aec06e0e49 Mon Sep 17 00:00:00 2001
|
||||||
From: Jonas Karlman <jonas@kwiboo.se>
|
From: Jonas Karlman <jonas@kwiboo.se>
|
||||||
Date: Sun, 20 Oct 2019 17:10:07 +0000
|
Date: Sun, 20 Oct 2019 17:10:07 +0000
|
||||||
Subject: [PATCH 1/6] WIP: DVDVideoCodecDRMPRIME: add support for filters
|
Subject: [PATCH 1/6] WIP: DVDVideoCodecDRMPRIME: add support for filters
|
||||||
|
@ -1,18 +1,26 @@
|
|||||||
From 60c20b00749ddf3ffd8cbb7a3cd3778fb8af13fc Mon Sep 17 00:00:00 2001
|
From a2f57bbd2c63fc0cf89304805e93f3b57ce55b58 Mon Sep 17 00:00:00 2001
|
||||||
From: Jernej Skrabec <jernej.skrabec@siol.net>
|
From: Jernej Skrabec <jernej.skrabec@siol.net>
|
||||||
Date: Thu, 26 Dec 2019 11:01:51 +0100
|
Date: Thu, 26 Dec 2019 11:01:51 +0100
|
||||||
Subject: [PATCH 2/6] WIP: DRMPRIME deinterlace filter
|
Subject: [PATCH 2/6] WIP: DRMPRIME deinterlace filter
|
||||||
|
|
||||||
---
|
---
|
||||||
.../DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp | 378 +++++++++++++++---
|
.../DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp | 379 +++++++++++++++---
|
||||||
.../DVDCodecs/Video/DVDVideoCodecDRMPRIME.h | 9 +-
|
.../DVDCodecs/Video/DVDVideoCodecDRMPRIME.h | 9 +-
|
||||||
2 files changed, 327 insertions(+), 60 deletions(-)
|
2 files changed, 328 insertions(+), 60 deletions(-)
|
||||||
|
|
||||||
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
index 40cde1ba6e..6588abec6d 100644
|
index 40cde1ba6e..1843e72e55 100644
|
||||||
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
@@ -79,12 +79,15 @@ CDVDVideoCodecDRMPRIME::CDVDVideoCodecDRMPRIME(CProcessInfo& processInfo)
|
@@ -19,6 +19,7 @@
|
||||||
|
#include "threads/SingleLock.h"
|
||||||
|
#include "utils/CPUInfo.h"
|
||||||
|
#include "utils/log.h"
|
||||||
|
+#include "utils/StringUtils.h"
|
||||||
|
|
||||||
|
#if defined(HAVE_GBM)
|
||||||
|
#include "windowing/gbm/WinSystemGbm.h"
|
||||||
|
@@ -79,12 +80,15 @@ CDVDVideoCodecDRMPRIME::CDVDVideoCodecDRMPRIME(CProcessInfo& processInfo)
|
||||||
: CDVDVideoCodec(processInfo)
|
: CDVDVideoCodec(processInfo)
|
||||||
{
|
{
|
||||||
m_pFrame = av_frame_alloc();
|
m_pFrame = av_frame_alloc();
|
||||||
@ -28,7 +36,7 @@ index 40cde1ba6e..6588abec6d 100644
|
|||||||
avcodec_free_context(&m_pCodecContext);
|
avcodec_free_context(&m_pCodecContext);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -341,8 +344,19 @@ bool CDVDVideoCodecDRMPRIME::Open(CDVDStreamInfo& hints, CDVDCodecOptions& optio
|
@@ -341,8 +345,19 @@ bool CDVDVideoCodecDRMPRIME::Open(CDVDStreamInfo& hints, CDVDCodecOptions& optio
|
||||||
}
|
}
|
||||||
|
|
||||||
UpdateProcessInfo(m_pCodecContext, m_pCodecContext->pix_fmt);
|
UpdateProcessInfo(m_pCodecContext, m_pCodecContext->pix_fmt);
|
||||||
@ -49,7 +57,7 @@ index 40cde1ba6e..6588abec6d 100644
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -418,6 +432,8 @@ void CDVDVideoCodecDRMPRIME::Reset()
|
@@ -418,6 +433,8 @@ void CDVDVideoCodecDRMPRIME::Reset()
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Drain();
|
Drain();
|
||||||
@ -58,7 +66,7 @@ index 40cde1ba6e..6588abec6d 100644
|
|||||||
|
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
@@ -465,7 +481,7 @@ void CDVDVideoCodecDRMPRIME::Drain()
|
@@ -465,7 +482,7 @@ void CDVDVideoCodecDRMPRIME::Drain()
|
||||||
av_packet_free(&avpkt);
|
av_packet_free(&avpkt);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -67,7 +75,7 @@ index 40cde1ba6e..6588abec6d 100644
|
|||||||
{
|
{
|
||||||
pVideoPicture->iWidth = m_pFrame->width;
|
pVideoPicture->iWidth = m_pFrame->width;
|
||||||
pVideoPicture->iHeight = m_pFrame->height;
|
pVideoPicture->iHeight = m_pFrame->height;
|
||||||
@@ -559,13 +575,238 @@ void CDVDVideoCodecDRMPRIME::SetPictureParams(VideoPicture* pVideoPicture)
|
@@ -559,13 +576,238 @@ void CDVDVideoCodecDRMPRIME::SetPictureParams(VideoPicture* pVideoPicture)
|
||||||
? DVD_NOPTS_VALUE
|
? DVD_NOPTS_VALUE
|
||||||
: static_cast<double>(pts) * DVD_TIME_BASE / AV_TIME_BASE;
|
: static_cast<double>(pts) * DVD_TIME_BASE / AV_TIME_BASE;
|
||||||
pVideoPicture->dts = DVD_NOPTS_VALUE;
|
pVideoPicture->dts = DVD_NOPTS_VALUE;
|
||||||
@ -309,7 +317,7 @@ index 40cde1ba6e..6588abec6d 100644
|
|||||||
int ret = av_buffersrc_add_frame(m_pFilterIn, m_pFrame);
|
int ret = av_buffersrc_add_frame(m_pFilterIn, m_pFrame);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
@@ -581,21 +822,14 @@ CDVDVideoCodec::VCReturn CDVDVideoCodecDRMPRIME::ProcessFilterIn()
|
@@ -581,21 +823,14 @@ CDVDVideoCodec::VCReturn CDVDVideoCodecDRMPRIME::ProcessFilterIn()
|
||||||
|
|
||||||
CDVDVideoCodec::VCReturn CDVDVideoCodecDRMPRIME::ProcessFilterOut()
|
CDVDVideoCodec::VCReturn CDVDVideoCodecDRMPRIME::ProcessFilterOut()
|
||||||
{
|
{
|
||||||
@ -335,7 +343,7 @@ index 40cde1ba6e..6588abec6d 100644
|
|||||||
}
|
}
|
||||||
else if (ret)
|
else if (ret)
|
||||||
{
|
{
|
||||||
@@ -606,71 +840,97 @@ CDVDVideoCodec::VCReturn CDVDVideoCodecDRMPRIME::ProcessFilterOut()
|
@@ -606,71 +841,97 @@ CDVDVideoCodec::VCReturn CDVDVideoCodecDRMPRIME::ProcessFilterOut()
|
||||||
return VC_ERROR;
|
return VC_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
From d4956bedd865a007585fbd59a4b938854b61b47f Mon Sep 17 00:00:00 2001
|
From c2b50468de1a8a72a4e00e53492e4e26f2573490 Mon Sep 17 00:00:00 2001
|
||||||
From: popcornmix <popcornmix@gmail.com>
|
From: popcornmix <popcornmix@gmail.com>
|
||||||
Date: Fri, 27 Aug 2021 20:29:50 +0100
|
Date: Fri, 27 Aug 2021 20:29:50 +0100
|
||||||
Subject: [PATCH 3/6] DVDVideoCodecDRMPRIME: Avoid exception with
|
Subject: [PATCH 3/6] DVDVideoCodecDRMPRIME: Avoid exception with
|
||||||
@ -9,10 +9,10 @@ Subject: [PATCH 3/6] DVDVideoCodecDRMPRIME: Avoid exception with
|
|||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
index 6588abec6d..0084fcc441 100644
|
index 1843e72e55..709311e75f 100644
|
||||||
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
@@ -605,7 +605,7 @@ bool CDVDVideoCodecDRMPRIME::SetPictureParams(VideoPicture* pVideoPicture)
|
@@ -606,7 +606,7 @@ bool CDVDVideoCodecDRMPRIME::SetPictureParams(VideoPicture* pVideoPicture)
|
||||||
if (!pVideoPicture->videoBuffer)
|
if (!pVideoPicture->videoBuffer)
|
||||||
{
|
{
|
||||||
CLog::Log(LOGERROR, "CDVDVideoCodecDRMPRIME::{} - videoBuffer:nullptr format:{}", __FUNCTION__,
|
CLog::Log(LOGERROR, "CDVDVideoCodecDRMPRIME::{} - videoBuffer:nullptr format:{}", __FUNCTION__,
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
From b577b5358bc9e72550dbba9f12f27973639a8fca Mon Sep 17 00:00:00 2001
|
From 66833bc8221a9d5a5fbc625c3f0293a261bbd412 Mon Sep 17 00:00:00 2001
|
||||||
From: popcornmix <popcornmix@gmail.com>
|
From: popcornmix <popcornmix@gmail.com>
|
||||||
Date: Fri, 17 Sep 2021 15:23:16 +0100
|
Date: Fri, 17 Sep 2021 15:23:16 +0100
|
||||||
Subject: [PATCH 4/6] DVDVideoCodecDRMPRIME: Leave deinterlace filter active on
|
Subject: [PATCH 4/6] DVDVideoCodecDRMPRIME: Leave deinterlace filter active on
|
||||||
@ -14,10 +14,10 @@ be just copied by deinterlace filter
|
|||||||
1 file changed, 4 insertions(+)
|
1 file changed, 4 insertions(+)
|
||||||
|
|
||||||
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
index 0084fcc441..26efaabe02 100644
|
index 709311e75f..6ba0804904 100644
|
||||||
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
@@ -855,6 +855,10 @@ std::string CDVDVideoCodecDRMPRIME::GetFilterChain(bool interlaced)
|
@@ -856,6 +856,10 @@ std::string CDVDVideoCodecDRMPRIME::GetFilterChain(bool interlaced)
|
||||||
if (!m_processInfo.Supports(mInt))
|
if (!m_processInfo.Supports(mInt))
|
||||||
mInt = m_processInfo.GetFallbackDeintMethod();
|
mInt = m_processInfo.GetFallbackDeintMethod();
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
From 622f31900b9c11dca44e40b36d12bff5997da953 Mon Sep 17 00:00:00 2001
|
From 6d40c431345c8bac66fb1a3bb06e29a0f944ac3d Mon Sep 17 00:00:00 2001
|
||||||
From: Dom Cobley <popcornmix@gmail.com>
|
From: Dom Cobley <popcornmix@gmail.com>
|
||||||
Date: Tue, 30 Nov 2021 16:05:06 +0000
|
Date: Tue, 30 Nov 2021 16:05:06 +0000
|
||||||
Subject: [PATCH 5/6] SetVideoInterlaced: Set and unset deinterlace method name
|
Subject: [PATCH 5/6] SetVideoInterlaced: Set and unset deinterlace method name
|
||||||
@ -9,10 +9,10 @@ Subject: [PATCH 5/6] SetVideoInterlaced: Set and unset deinterlace method name
|
|||||||
1 file changed, 2 insertions(+), 8 deletions(-)
|
1 file changed, 2 insertions(+), 8 deletions(-)
|
||||||
|
|
||||||
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
index 26efaabe02..2ceb7ce02f 100644
|
index 6ba0804904..9139233bc4 100644
|
||||||
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
@@ -769,14 +769,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
@@ -770,14 +770,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -28,7 +28,7 @@ index 26efaabe02..2ceb7ce02f 100644
|
|||||||
|
|
||||||
if (CServiceBroker::GetLogging().CanLogComponent(LOGVIDEO))
|
if (CServiceBroker::GetLogging().CanLogComponent(LOGVIDEO))
|
||||||
{
|
{
|
||||||
@@ -794,6 +787,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
@@ -795,6 +788,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
||||||
|
|
||||||
void CDVDVideoCodecDRMPRIME::FilterClose()
|
void CDVDVideoCodecDRMPRIME::FilterClose()
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
From be317b043f9308b76b15325fa670802bc969533a Mon Sep 17 00:00:00 2001
|
From e014499333c6ca6ef4dca3a15b8c81ec07d80c12 Mon Sep 17 00:00:00 2001
|
||||||
From: Dom Cobley <popcornmix@gmail.com>
|
From: Dom Cobley <popcornmix@gmail.com>
|
||||||
Date: Wed, 24 Nov 2021 20:21:28 +0000
|
Date: Wed, 24 Nov 2021 20:21:28 +0000
|
||||||
Subject: [PATCH 6/6] DVDVideoCodecDRMPRIME: Close deinterlace filter on error
|
Subject: [PATCH 6/6] DVDVideoCodecDRMPRIME: Close deinterlace filter on error
|
||||||
@ -9,10 +9,10 @@ Otherwise we crash later with an invalid m_pFilterGraph pointer
|
|||||||
1 file changed, 7 insertions(+)
|
1 file changed, 7 insertions(+)
|
||||||
|
|
||||||
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
index 2ceb7ce02f..20a5c24f53 100644
|
index 9139233bc4..0b44d90f13 100644
|
||||||
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecDRMPRIME.cpp
|
||||||
@@ -685,6 +685,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
@@ -686,6 +686,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
||||||
CLog::Log(LOGERROR,
|
CLog::Log(LOGERROR,
|
||||||
"CDVDVideoCodecDRMPRIME::FilterOpen - avfilter_graph_create_filter: src: {} ({})",
|
"CDVDVideoCodecDRMPRIME::FilterOpen - avfilter_graph_create_filter: src: {} ({})",
|
||||||
err, result);
|
err, result);
|
||||||
@ -20,7 +20,7 @@ index 2ceb7ce02f..20a5c24f53 100644
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -692,6 +693,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
@@ -693,6 +694,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
||||||
if (!par)
|
if (!par)
|
||||||
{
|
{
|
||||||
CLog::Log(LOGERROR, "CDVDVideoCodecDRMPRIME::FilterOpen - unable to alloc buffersrc");
|
CLog::Log(LOGERROR, "CDVDVideoCodecDRMPRIME::FilterOpen - unable to alloc buffersrc");
|
||||||
@ -28,7 +28,7 @@ index 2ceb7ce02f..20a5c24f53 100644
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -707,6 +709,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
@@ -708,6 +710,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
||||||
CLog::Log(LOGERROR,
|
CLog::Log(LOGERROR,
|
||||||
"CDVDVideoCodecDRMPRIME::FilterOpen - av_buffersrc_parameters_set: {} ({})",
|
"CDVDVideoCodecDRMPRIME::FilterOpen - av_buffersrc_parameters_set: {} ({})",
|
||||||
err, result);
|
err, result);
|
||||||
@ -36,7 +36,7 @@ index 2ceb7ce02f..20a5c24f53 100644
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
av_freep(&par);
|
av_freep(&par);
|
||||||
@@ -720,6 +723,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
@@ -721,6 +724,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
||||||
CLog::Log(LOGERROR,
|
CLog::Log(LOGERROR,
|
||||||
"CDVDVideoCodecDRMPRIME::FilterOpen - avfilter_graph_create_filter: out: {} ({})",
|
"CDVDVideoCodecDRMPRIME::FilterOpen - avfilter_graph_create_filter: out: {} ({})",
|
||||||
err, result);
|
err, result);
|
||||||
@ -44,7 +44,7 @@ index 2ceb7ce02f..20a5c24f53 100644
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -728,6 +732,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
@@ -729,6 +733,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
||||||
if (result < 0)
|
if (result < 0)
|
||||||
{
|
{
|
||||||
CLog::Log(LOGERROR, "CDVDVideoCodecDRMPRIME::FilterOpen - failed settings pix formats");
|
CLog::Log(LOGERROR, "CDVDVideoCodecDRMPRIME::FilterOpen - failed settings pix formats");
|
||||||
@ -52,7 +52,7 @@ index 2ceb7ce02f..20a5c24f53 100644
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -751,6 +756,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
@@ -752,6 +757,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
||||||
if (result < 0)
|
if (result < 0)
|
||||||
{
|
{
|
||||||
CLog::Log(LOGERROR, "CDVDVideoCodecDRMPRIME::FilterOpen - avfilter_graph_parse");
|
CLog::Log(LOGERROR, "CDVDVideoCodecDRMPRIME::FilterOpen - avfilter_graph_parse");
|
||||||
@ -60,7 +60,7 @@ index 2ceb7ce02f..20a5c24f53 100644
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -760,6 +766,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
@@ -761,6 +767,7 @@ bool CDVDVideoCodecDRMPRIME::FilterOpen(const std::string& filters, bool test)
|
||||||
av_strerror(result, err, AV_ERROR_MAX_STRING_SIZE);
|
av_strerror(result, err, AV_ERROR_MAX_STRING_SIZE);
|
||||||
CLog::Log(LOGERROR, "CDVDVideoCodecDRMPRIME::FilterOpen - avfilter_graph_config: {} ({})",
|
CLog::Log(LOGERROR, "CDVDVideoCodecDRMPRIME::FilterOpen - avfilter_graph_config: {} ({})",
|
||||||
err, result);
|
err, result);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user