multithreading.txt 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. FFmpeg multithreading methods
  2. ==============================================
  3. FFmpeg provides two methods for multithreading codecs.
  4. Slice threading decodes multiple parts of a frame at the same time, using
  5. AVCodecContext execute() and execute2().
  6. Frame threading decodes multiple frames at the same time.
  7. It accepts N future frames and delays decoded pictures by N-1 frames.
  8. The later frames are decoded in separate threads while the user is
  9. displaying the current one.
  10. Restrictions on clients
  11. ==============================================
  12. Slice threading -
  13. * The client's draw_horiz_band() must be thread-safe according to the comment
  14. in avcodec.h.
  15. Frame threading -
  16. * Restrictions with slice threading also apply.
  17. * Custom get_buffer2() and get_format() callbacks must be thread-safe.
  18. * There is one frame of delay added for every thread beyond the first one.
  19. Clients must be able to handle this; the pkt_dts and pkt_pts fields in
  20. AVFrame will work as usual.
  21. Restrictions on codec implementations
  22. ==============================================
  23. Slice threading -
  24. None except that there must be something worth executing in parallel.
  25. Frame threading -
  26. * Codecs can only accept entire pictures per packet.
  27. * Codecs similar to ffv1, whose streams don't reset across frames,
  28. will not work because their bitstreams cannot be decoded in parallel.
  29. * The contents of buffers must not be read before ff_thread_await_progress()
  30. has been called on them. reget_buffer() and buffer age optimizations no longer work.
  31. * The contents of buffers must not be written to after ff_thread_report_progress()
  32. has been called on them. This includes draw_edges().
  33. Porting codecs to frame threading
  34. ==============================================
  35. Find all context variables that are needed by the next frame. Move all
  36. code changing them, as well as code calling get_buffer(), up to before
  37. the decode process starts. Call ff_thread_finish_setup() afterwards. If
  38. some code can't be moved, have update_thread_context() run it in the next
  39. thread.
  40. Add AV_CODEC_CAP_FRAME_THREADS to the codec capabilities. There will be very little
  41. speed gain at this point but it should work.
  42. If there are inter-frame dependencies, so the codec calls
  43. ff_thread_report/await_progress(), set FF_CODEC_CAP_ALLOCATE_PROGRESS in
  44. FFCodec.caps_internal and use ff_thread_get_buffer() to allocate frames.
  45. Otherwise decode directly into the user-supplied frames.
  46. Call ff_thread_report_progress() after some part of the current picture has decoded.
  47. A good place to put this is where draw_horiz_band() is called - add this if it isn't
  48. called anywhere, as it's useful too and the implementation is trivial when you're
  49. doing this. Note that draw_edges() needs to be called before reporting progress.
  50. Before accessing a reference frame or its MVs, call ff_thread_await_progress().