You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avconv: free bitstream filters
This commit is contained in:
9
avconv.c
9
avconv.c
@@ -667,6 +667,15 @@ void exit_program(int ret)
|
||||
avformat_free_context(s);
|
||||
av_dict_free(&output_files[i].opts);
|
||||
}
|
||||
for (i = 0; i < nb_output_streams; i++) {
|
||||
AVBitStreamFilterContext *bsfc = output_streams[i].bitstream_filters;
|
||||
while (bsfc) {
|
||||
AVBitStreamFilterContext *next = bsfc->next;
|
||||
av_bitstream_filter_close(bsfc);
|
||||
bsfc = next;
|
||||
}
|
||||
output_streams[i].bitstream_filters = NULL;
|
||||
}
|
||||
for (i = 0; i < nb_input_files; i++) {
|
||||
avformat_close_input(&input_files[i].ctx);
|
||||
}
|
||||
|
Reference in New Issue
Block a user