lavf: Add forgotten line from 212fd3a1f1

This fixes a tiny memleak.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-01-09 01:12:48 +01:00
parent 9273efac1b
commit 72c5828c93
1 changed files with 2 additions and 0 deletions

View File

@ -2713,6 +2713,8 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
ic->streams[i]->codec->thread_count = 0;
av_freep(&ic->streams[i]->info);
}
av_dict_free(&one_thread_opt);
return ret;
}