aboutsummaryrefslogtreecommitdiffstats
path: root/fftools/ffmpeg_mux.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2023-07-08 10:22:13 +0200
committerAnton Khirnov <anton@khirnov.net>2023-08-30 11:53:50 +0200
commitbff48e8d693d4cf8fc3828937fbd9be8c1881b1d (patch)
tree8b501997d39641006ad5c1b4eb4728a9bcf151d5 /fftools/ffmpeg_mux.c
parentd55262704e2c5c5a9a07d6b29ba74fa093d5320d (diff)
downloadffmpeg-bff48e8d693d4cf8fc3828937fbd9be8c1881b1d.tar.gz
fftools/ffmpeg_mux: rename of_close() to of_free()
This function is primarily a destructor for OutputFile, the underlying AVIOContext is normally closed earlier (right after writing the trailer).
Diffstat (limited to 'fftools/ffmpeg_mux.c')
-rw-r--r--fftools/ffmpeg_mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/ffmpeg_mux.c b/fftools/ffmpeg_mux.c
index 54410aac5c..e74b5f09f5 100644
--- a/fftools/ffmpeg_mux.c
+++ b/fftools/ffmpeg_mux.c
@@ -917,7 +917,7 @@ static void fc_close(AVFormatContext **pfc)
*pfc = NULL;
}
-void of_close(OutputFile **pof)
+void of_free(OutputFile **pof)
{
OutputFile *of = *pof;
Muxer *mux;