[FFmpeg-cvslog] avcodec/libx264: fix usage of AVComponentDescriptor depth field

James Almer git at videolan.org
Thu Feb 1 03:40:39 EET 2018


ffmpeg | branch: release/2.4 | James Almer <jamrial at gmail.com> | Wed Jan 31 22:38:50 2018 -0300| [1cae2f002d4e76a389f41c207b05e9eb9f8b04d3] | committer: James Almer

avcodec/libx264: fix usage of AVComponentDescriptor depth field

AVComponentDescriptor.depth is not available in release/2.4

This fixes compilation of the libx264 wrapper.

Signed-off-by: James Almer <jamrial at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1cae2f002d4e76a389f41c207b05e9eb9f8b04d3
---

 libavcodec/libx264.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c
index 72427d3931..97fc62f2c4 100644
--- a/libavcodec/libx264.c
+++ b/libavcodec/libx264.c
@@ -398,7 +398,7 @@ static av_cold int X264_init(AVCodecContext *avctx)
     x4->params.i_log_level          = X264_LOG_DEBUG;
     x4->params.i_csp                = convert_pix_fmt(avctx->pix_fmt);
 #if X264_BUILD >= 153
-    x4->params.i_bitdepth           = av_pix_fmt_desc_get(avctx->pix_fmt)->comp[0].depth;
+    x4->params.i_bitdepth           = av_pix_fmt_desc_get(avctx->pix_fmt)->comp[0].depth_minus1 + 1;
 #endif
 
     OPT_STR("weightp", x4->wpredp);



More information about the ffmpeg-cvslog mailing list