mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 15:32:59 +02:00
ffmpegdec.cpp: fix possible memleak
This commit is contained in:
@@ -192,7 +192,7 @@ bool CFfmpegDec::Init(void *_in, const CFile::FileType /* ft */)
|
||||
char buf[200]; av_strerror(r, buf, sizeof(buf));
|
||||
fprintf(stderr, "%d %s %d: %s\n", __LINE__, __func__,r,buf);
|
||||
if (avioc)
|
||||
av_freep(avioc);
|
||||
avio_context_free(&avioc);
|
||||
if (avc) {
|
||||
avformat_close_input(&avc);
|
||||
avformat_free_context(avc);
|
||||
@@ -206,15 +206,12 @@ bool CFfmpegDec::Init(void *_in, const CFile::FileType /* ft */)
|
||||
void CFfmpegDec::DeInit(void)
|
||||
{
|
||||
if (avc) {
|
||||
if (avc->pb)
|
||||
avio_context_free(&avc->pb);
|
||||
avformat_close_input(&avc);
|
||||
#if 0
|
||||
av_freep(&avc->pb);
|
||||
#endif
|
||||
avformat_free_context(avc);
|
||||
avc = NULL;
|
||||
}
|
||||
// if (buffer)
|
||||
// av_freep(&buffer);
|
||||
in = NULL;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user