Merge commit 'd82d5379caca21005d8906829b35361c4a65408e'

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

Merged-by: Clément Bœsch <u@pkh.me>
pull/139/merge
Clément Bœsch 8 years ago
commit b853d6aa5b
  1. 2
      libavcodec/mmaldec.c

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

Loading…
Cancel
Save