diff options
author | Clément Bœsch <u@pkh.me> | 2017-04-01 15:15:19 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-04-01 15:15:19 +0200 |
commit | c7173e50980c4e164a81b5b021a59e9853c483f2 (patch) | |
tree | 334d8657f2842b8d0a3211d01723243d9efade85 | |
parent | a032c5224d409bf2d9d4f5dbcab9b8e9fae60b23 (diff) | |
parent | 76167140a91c081a0cf9d0abcaa4da18d1bacadb (diff) | |
download | ffmpeg-c7173e50980c4e164a81b5b021a59e9853c483f2.tar.gz |
Merge commit '76167140a91c081a0cf9d0abcaa4da18d1bacadb'
* commit '76167140a91c081a0cf9d0abcaa4da18d1bacadb':
qsvdec: Drop stray extra braces around initializer
Merged-by: Clément Bœsch <u@pkh.me>
-rw-r--r-- | libavcodec/qsvdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/qsvdec.c b/libavcodec/qsvdec.c index d6adcdc335..60a53f6b2a 100644 --- a/libavcodec/qsvdec.c +++ b/libavcodec/qsvdec.c @@ -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; |