Skip to content

Commit

Permalink
ffmpeg - не используем AV_PIX_FMT_YUVJ420P для H.264 кодека, тем боле…
Browse files Browse the repository at this point in the history
…е что в самом ffmpeg он указан как устаревший. Это исправит невозможность аппаратного ускорения таких потоков.

Аппаратные декодеры H.264 - добавлена поддержка "чистого" Baseline профиля, это даст возможность использовать Copy Back декодеры в MPCVideoDec на таких потоках.
  • Loading branch information
Aleksoid1978 committed Feb 13, 2024
1 parent cbef4cf commit 60955f3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/ExtLib/ffmpeg/libavcodec/dxva2.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ static const int prof_mpeg2_main[] = {AV_PROFILE_MPEG2_SIMPLE,
static const int prof_h264_high[] = {AV_PROFILE_H264_CONSTRAINED_BASELINE,
AV_PROFILE_H264_MAIN,
AV_PROFILE_H264_HIGH,
// ==> Start patch MPC
AV_PROFILE_H264_BASELINE,
// ==> End patch MPC
AV_PROFILE_UNKNOWN};
static const int prof_hevc_main[] = {AV_PROFILE_HEVC_MAIN,
AV_PROFILE_UNKNOWN};
Expand Down
5 changes: 5 additions & 0 deletions src/ExtLib/ffmpeg/libavcodec/h264_slice.c
Original file line number Diff line number Diff line change
Expand Up @@ -897,10 +897,15 @@ static enum AVPixelFormat get_pixel_format(H264Context *h, int force_callback)
#if CONFIG_H264_VAAPI_HWACCEL
*fmt++ = AV_PIX_FMT_VAAPI;
#endif
// ==> Start patch MPC
/*
if (h->avctx->color_range == AVCOL_RANGE_JPEG)
*fmt++ = AV_PIX_FMT_YUVJ420P;
else
*fmt++ = AV_PIX_FMT_YUV420P;
*/
*fmt++ = AV_PIX_FMT_YUV420P;
// ==> End patch MPC
}
break;
default:
Expand Down

0 comments on commit 60955f3

Please sign in to comment.