diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-21 03:51:39 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-21 13:01:20 +0200 |
commit | 5a7978a694e7cab4684181ca4020caf0ce8cbb06 (patch) | |
tree | 080a29a15fcbc74654afe81adad3d771430765e1 /libavfilter/internal.h | |
parent | 55c35d84eb2bd6a50c24b1904a3e6c01b83804cc (diff) | |
download | ffmpeg-5a7978a694e7cab4684181ca4020caf0ce8cbb06.tar.gz |
avfilter/avfilter: Make ff_command_queue_pop() static
Only used here.
Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r-- | libavfilter/internal.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 36969c442e..aaf2c6c584 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -256,8 +256,6 @@ void ff_avfilter_link_set_in_status(AVFilterLink *link, int status, int64_t pts) */ void ff_avfilter_link_set_out_status(AVFilterLink *link, int status, int64_t pts); -void ff_command_queue_pop(AVFilterContext *filter); - #define D2TS(d) (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d)) #define TS2D(ts) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts)) #define TS2T(ts, tb) ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts) * av_q2d(tb)) |