Commit c9bd6ee5 authored by Timo Rothenpieler's avatar Timo Rothenpieler

avfilter/vf_colorspace_cuda: mark fall-through

parent a90e5335
......@@ -281,6 +281,7 @@ static int conv_cuda_convert(AVFilterContext* ctx, AVFrame* out, AVFrame* in)
break;
case AV_PIX_FMT_YUV420P:
width = comp_id ? in->width / 2 : in->width;
/* fall-through */
case AV_PIX_FMT_NV12:
height = comp_id ? in->height / 2 : in->height;
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment