Closed GoogleCodeExporter closed 8 years ago
oh, sorry ... the mp4meta.cpp bugs seem to be fixed now. my bad.
Original comment by the.swin...@gmail.com
on 13 Feb 2011 at 3:38
Are any of these leaks present in trunk?
Original comment by kid...@gmail.com
on 2 Mar 2011 at 6:59
oh yeah ... here they are (mp4_sound.cpp, line 102):
// Quicktime has an interesting thing - they'll put an mp4a atom
// which is blank inside a wave atom, which is inside an mp4a atom
// we have a mp4a inside an wave inside an mp4a - delete all properties
m_pProperties.Delete(8);
m_pProperties.Delete(7);
m_pProperties.Delete(6);
m_pProperties.Delete(5);
m_pProperties.Delete(4);
m_pProperties.Delete(3);
m_pProperties.Delete(2);
m_pProperties.Delete(1);
m_pProperties.Delete(0);
the deleted properties are not being freed.
and since there's no mp4_meta.cpp in the trunk, i guess these leaks are not
present in there.
Original comment by the.swin...@gmail.com
on 2 Mar 2011 at 9:51
Should be fixed in r465. Thanks.
Original comment by kid...@gmail.com
on 15 May 2011 at 12:03
Original comment by kid...@gmail.com
on 15 May 2011 at 12:03
Original issue reported on code.google.com by
the.swin...@gmail.com
on 13 Feb 2011 at 3:34