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

@@ -1995,7 +1995,7 @@ static int try_decode_frame(AVStream *st, AVPacket *avpkt, AVDictionary **option
}
fail:
avcodec_free_frame(&frame);
av_frame_free(&frame);
return ret;
}