Commit 1caff573 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '04070dbc'

* commit '04070dbc':
  libx265: Fix 'braces around scalar initializer' warning
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 20ce69e5 04070dbc
......@@ -247,7 +247,7 @@ static int libx265_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
{
libx265Context *ctx = avctx->priv_data;
x265_picture x265pic;
x265_picture x265pic_out = { { 0 } };
x265_picture x265pic_out = { 0 };
x265_nal *nal;
uint8_t *dst;
int payload = 0;
......
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