diff options
author | James Almer <jamrial@gmail.com> | 2021-09-03 10:30:32 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-09-04 10:35:07 -0300 |
commit | 7453d3482a02452d67ca2fa2a2ed1e6094fdddeb (patch) | |
tree | f7be2b74c37d982e307b441d7293bbb5d58a6d8f /fftools/ffmpeg.h | |
parent | f599ae88c25d2c84c4f3be1abe30777b68e249d5 (diff) | |
download | ffmpeg-7453d3482a02452d67ca2fa2a2ed1e6094fdddeb.tar.gz |
ffmpeg: let AVFilterGraph parse the filter_threads option
This way the CLI accepts for "filter_threads" the same values as for the
libavcodec specific option "threads".
Fixes FATE with THREADS=auto which was broken in bdc1bdf3f5.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'fftools/ffmpeg.h')
-rw-r--r-- | fftools/ffmpeg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 8184099b05..1194bb0cae 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -629,7 +629,7 @@ extern AVIOContext *progress_avio; extern float max_error_rate; extern char *videotoolbox_pixfmt; -extern int filter_nbthreads; +extern char *filter_nbthreads; extern int filter_complex_nbthreads; extern int vstats_version; extern int auto_conversion_filters; |