Merge commit 'd82d5379caca21005d8906829b35361c4a65408e'

* commit 'd82d5379caca21005d8906829b35361c4a65408e':
  mmaldec: initialize refcount using atomic_init()

Merged-by: Clément Bœsch <u@pkh.me>
This commit is contained in:
Clément Bœsch 2017-04-08 14:52:30 +02:00
commit b853d6aa5b
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ static int ffmal_update_format(AVCodecContext *avctx)
ret = AVERROR(ENOMEM);
goto fail;
}
atomic_store(&ctx->pool_out->refcount, 1);
atomic_init(&ctx->pool_out->refcount, 1);
if (!format_out)
goto fail;