Replace all uses of avcodec_free_frame with av_frame_free().

This commit is contained in:
Anton Khirnov
2013-11-29 21:41:52 +01:00
parent 17a10d51b8
commit eb891b3114
5 changed files with 8 additions and 8 deletions

View File

@@ -182,7 +182,7 @@ static void avconv_cleanup(int ret)
bsfc = next;
}
output_streams[i]->bitstream_filters = NULL;
avcodec_free_frame(&output_streams[i]->filtered_frame);
av_frame_free(&output_streams[i]->filtered_frame);
av_parser_close(output_streams[i]->parser);