Browse Source

qsvdec: Drop stray extra braces around initializer

libavcodec/qsvdec.c:93:5: warning: braces around scalar initializer
tags/n3.3
Diego Biurrun 8 years ago
parent
commit
76167140a9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/qsvdec.c

+ 1
- 1
libavcodec/qsvdec.c View File

@@ -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;


Loading…
Cancel
Save