avcodec/internal: Update AVCodecInternal.is_copy documentation

Forgotten in 1f4cf92cfb.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2021-09-24 18:06:28 +02:00
parent b9fd9bce73
commit 78ec2f3bd7
1 changed files with 2 additions and 4 deletions

View File

@ -122,10 +122,8 @@ typedef struct EncodeSimpleContext {
typedef struct AVCodecInternal {
/**
* Whether the parent AVCodecContext is a copy of the context which had
* init() called on it.
* This is used by multithreading - shared tables and picture pointers
* should be freed from the original context only.
* When using frame-threaded decoding, this field is set for the first
* worker thread (e.g. to decode extradata just once).
*/
int is_copy;