Commit c7173e50 authored by Clément Bœsch's avatar Clément Bœsch

Merge commit '76167140'

* commit '76167140':
  qsvdec: Drop stray extra braces around initializer
Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents a032c522 76167140
......@@ -90,7 +90,7 @@ static int qsv_decode_init(AVCodecContext *avctx, QSVContext *q)
const AVPixFmtDescriptor *desc;
mfxSession session = NULL;
int iopattern = 0;
mfxVideoParam param = { { 0 } };
mfxVideoParam param = { 0 };
int frame_width = avctx->coded_width;
int frame_height = avctx->coded_height;
int ret;
......
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