lavc/hapenc: Silence a warning for multithreaded encoding.

pull/227/head
Carl Eugen Hoyos 10 years ago
parent 5c047f3ad4
commit 8080688d0e
  1. 3
      libavcodec/hapdec.c

@ -177,7 +177,8 @@ static int hap_decode(AVCodecContext *avctx, void *data,
ret = ff_thread_get_buffer(avctx, &tframe, 0);
if (ret < 0)
return ret;
ff_thread_finish_setup(avctx);
if (avctx->codec->update_thread_context)
ff_thread_finish_setup(avctx);
/* Use the decompress function on the texture, one block per thread */
avctx->execute2(avctx, decompress_texture_thread, tframe.f, NULL, blocks);

Loading…
Cancel
Save