diff options
author | Anton Khirnov <anton@khirnov.net> | 2017-01-17 16:28:30 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2020-04-10 15:47:30 +0200 |
commit | 9d6785d426be1ac045c0b6a13b7447459389c40b (patch) | |
tree | 34d9c009685787bab847808826e49c766fa632cd /libavcodec/sbcdec.c | |
parent | 29445374305fcc422fb2abe55bb5a877b95c0ef2 (diff) | |
download | ffmpeg-9d6785d426be1ac045c0b6a13b7447459389c40b.tar.gz |
lavc: do not implicitly share the frame pool between threads
Currently the frame pool used by the default get_buffer2()
implementation is a single struct, allocated when opening the decoder.
A pointer to it is simply copied to each frame thread and we assume that
no thread attempts to modify it at an unexpected time. This is rather
fragile and potentially dangerous.
With this commit, the frame pool is made refcounted, with the reference
being propagated across threads along with other context variables. The
frame pool is now also immutable - when the stream parameters change we
drop the old reference and create a new one.
Diffstat (limited to 'libavcodec/sbcdec.c')
0 files changed, 0 insertions, 0 deletions