diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-12-13 18:26:21 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-12-14 20:16:53 +0100 |
commit | 84201d8af6255ddfbeffa38afd51f0ecf742390b (patch) | |
tree | 11c05facaea1fa998a59857602d6952a8d8e72f4 /fftools/ffmpeg.h | |
parent | 06d5dc11db257786dd18d13f39dd063ef8c1fa7d (diff) | |
download | ffmpeg-84201d8af6255ddfbeffa38afd51f0ecf742390b.tar.gz |
fftools/ffmpeg_filter: move FilterGraph.graph to FilterGraphThread
The AVFilterGraph is fully owned by the filtering thread and should
never be accessed outside of it.
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 7f84f3266d..de79bb1cbe 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -327,8 +327,6 @@ typedef struct FilterGraph { const AVClass *class; int index; - AVFilterGraph *graph; - InputFilter **inputs; int nb_inputs; OutputFilter **outputs; |