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).
This commit is contained in:
Anton Khirnov
2023-07-08 10:22:13 +02:00
parent d55262704e
commit bff48e8d69
3 changed files with 3 additions and 4 deletions

View File

@@ -362,9 +362,8 @@ static void ffmpeg_cleanup(int ret)
fg_free(&filtergraphs[i]);
av_freep(&filtergraphs);
/* close files */
for (i = 0; i < nb_output_files; i++)
of_close(&output_files[i]);
of_free(&output_files[i]);
for (i = 0; i < nb_input_files; i++)
ifile_close(&input_files[i]);