mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avconv: free bitstream filters
This commit is contained in:
parent
b12d217339
commit
1135a07146
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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user