Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #ifdef VDPAU_SUPPORT_HWACCEL
  2. pCodecCtx->opaque = pCtx;
  3. pCodecCtx->get_format = &get_format;
  4. pCodecCtx->get_buffer2 = &get_buffer;
  5. pCodecCtx->thread_safe_callbacks = 1;
  6.  
  7. if (!av_dict_get(pCtx->decoder_opts, "threads", NULL, 0))
  8. av_dict_set(&pCtx->decoder_opts, "threads", "auto", 0);
  9. avcodec_open2(pCtx->pCodecCtx, pCodec, &pCtx->decoder_opts);
  10. #else
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement