From 52cfa14cf65569164b25f54c3b52ed88f9c1b1e6 Mon Sep 17 00:00:00 2001 From: Aleksoid Date: Mon, 8 Jul 2024 15:23:38 +1000 Subject: [PATCH] =?UTF-8?q?MPCVideoDec=20-=20=D0=B2=20=D1=84=D1=83=D0=BD?= =?UTF-8?q?=D0=BA=D1=86=D0=B8=D0=B8=20FillAVCodecProps()=20=D1=83=D0=B1?= =?UTF-8?q?=D1=80=D0=B0=D0=BD=D0=B0=20(=D0=BA=D0=BE=D0=B4=20=D0=B7=D0=B0?= =?UTF-8?q?=D0=BA=D0=BE=D0=BC=D0=BC=D0=B5=D0=BD=D1=82=D0=B8=D1=80=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0=D0=BD)=20=D0=BE=D0=B1=D1=80=D0=B0=D0=B1=D0=BE?= =?UTF-8?q?=D1=82=D0=BA=D0=B0=20VVC=20=D0=BA=D0=BE=D0=B4=D0=B5=D0=BA=D0=B0?= =?UTF-8?q?,=20=D1=82.=D0=BA.=20=D1=8D=D1=82=D0=BE=20=D0=B1=D1=8B=D0=BB?= =?UTF-8?q?=D0=BE=20=D1=81=D0=B4=D0=B5=D0=BB=D0=B0=D0=BD=D0=BE=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20=D0=B2=D1=81=D1=82=D1=80=D0=BE=D0=B5=D0=BD=D0=BD?= =?UTF-8?q?=D0=BE=D0=B3=D0=BE=20=D0=B2=20ffmpeg=20=D0=B4=D0=B5=D0=BA=D0=BE?= =?UTF-8?q?=D0=B4=D0=B5=D1=80=D0=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/filters/transform/MPCVideoDec/ffmpegContext.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/filters/transform/MPCVideoDec/ffmpegContext.cpp b/src/filters/transform/MPCVideoDec/ffmpegContext.cpp index ca1091e069..df8621ae2f 100644 --- a/src/filters/transform/MPCVideoDec/ffmpegContext.cpp +++ b/src/filters/transform/MPCVideoDec/ffmpegContext.cpp @@ -37,7 +37,7 @@ extern "C" { #include #include #undef class - #include + //#include } #pragma warning(pop) @@ -318,6 +318,7 @@ void FillAVCodecProps(struct AVCodecContext* pAVCtx, BITMAPINFOHEADER* pBMI) case AV_CODEC_ID_DXTORY: pAVCtx->pix_fmt = AV_PIX_FMT_RGB24; // and other RGB formats, but it is not important here break; + /* case AV_CODEC_ID_VVC: { auto s = reinterpret_cast(pAVCtx->priv_data); @@ -369,6 +370,7 @@ void FillAVCodecProps(struct AVCodecContext* pAVCtx, BITMAPINFOHEADER* pBMI) } } break; + */ } if (pAVCtx->pix_fmt == AV_PIX_FMT_NONE) {