qsvdec: Drop stray extra braces around initializer

libavcodec/qsvdec.c:93:5: warning: braces around scalar initializer
This commit is contained in:
Diego Biurrun 2016-11-15 16:19:30 +01:00
parent 715b824346
commit 76167140a9
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ static int qsv_decode_init(AVCodecContext *avctx, QSVContext *q)
const AVPixFmtDescriptor *desc; const AVPixFmtDescriptor *desc;
mfxSession session = NULL; mfxSession session = NULL;
int iopattern = 0; int iopattern = 0;
mfxVideoParam param = { { 0 } }; mfxVideoParam param = { 0 };
int frame_width = avctx->coded_width; int frame_width = avctx->coded_width;
int frame_height = avctx->coded_height; int frame_height = avctx->coded_height;
int ret; int ret;