summaryrefslogtreecommitdiff
path: root/libavutil/hwcontext_cuda.c
diff options
context:
space:
mode:
authorTimo Rothenpieler <timo@rothenpieler.org>2020-11-04 01:36:48 +0100
committerTimo Rothenpieler <timo@rothenpieler.org>2020-11-04 01:36:48 +0100
commit98d3f2359853f1908092b6244f429ced838f493b (patch)
tree4f28df18e7afb65f73cae275370568ce1786798e /libavutil/hwcontext_cuda.c
parent2f3cb5cccab51c53f7440760fbd2914edbea801b (diff)
avutil/hwcontext_cuda: fix edge case with non-even frame heights
Diffstat (limited to 'libavutil/hwcontext_cuda.c')
-rw-r--r--libavutil/hwcontext_cuda.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/hwcontext_cuda.c b/libavutil/hwcontext_cuda.c
index 7278bd2988..58ffc81378 100644
--- a/libavutil/hwcontext_cuda.c
+++ b/libavutil/hwcontext_cuda.c
@@ -190,7 +190,7 @@ static int cuda_get_buffer(AVHWFramesContext *ctx, AVFrame *frame)
if (ctx->sw_format == AV_PIX_FMT_YUV420P) {
frame->linesize[1] = frame->linesize[2] = frame->linesize[0] / 2;
frame->data[2] = frame->data[1];
- frame->data[1] = frame->data[2] + frame->linesize[2] * ctx->height / 2;
+ frame->data[1] = frame->data[2] + frame->linesize[2] * (ctx->height / 2);
}
frame->format = AV_PIX_FMT_CUDA;