diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-06-09 19:16:29 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-06-19 09:48:55 +0200 |
commit | 1bdd53e2f95522eefddc34217c74afe8aa8d9a03 (patch) | |
tree | f70819bbdc9f3f89fcd6f28e17dbaaf45ef070b2 /fftools/ffmpeg_filter.c | |
parent | b1a213ab5d84085ae2b98452daa8feda01881cbf (diff) | |
download | ffmpeg-1bdd53e2f95522eefddc34217c74afe8aa8d9a03.tar.gz |
fftools/ffmpeg_filter: make configure_filtergraph() static
It is no longer used outside of ffmpeg_filter.
Diffstat (limited to 'fftools/ffmpeg_filter.c')
-rw-r--r-- | fftools/ffmpeg_filter.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c index 54c7ed1f5c..ccde5b26ec 100644 --- a/fftools/ffmpeg_filter.c +++ b/fftools/ffmpeg_filter.c @@ -133,6 +133,8 @@ static InputFilterPriv *ifp_from_ifilter(InputFilter *ifilter) return (InputFilterPriv*)ifilter; } +static int configure_filtergraph(FilterGraph *fg); + static int sub2video_get_blank_frame(InputFilterPriv *ifp) { AVFrame *frame = ifp->sub2video.frame; @@ -1496,7 +1498,7 @@ static int graph_is_meta(AVFilterGraph *graph) return 1; } -int configure_filtergraph(FilterGraph *fg) +static int configure_filtergraph(FilterGraph *fg) { FilterGraphPriv *fgp = fgp_from_fg(fg); AVBufferRef *hw_device; |