diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2010-03-03 17:31:24 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2010-03-03 17:31:24 +0000 |
commit | 4b83fc0fe414dc7959a5511fcdce320ad90ac7ba (patch) | |
tree | 649182f9e748b1e89ee8ca694bb0a1be09972e3c /libavformat/nut.h | |
parent | 1f6d0d42c53cde5e33e92c4529b774c256157f89 (diff) | |
download | ffmpeg-4b83fc0fe414dc7959a5511fcdce320ad90ac7ba.tar.gz |
Plug memory leak in NUT muxer and demuxer
Originally committed as revision 22174 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nut.h')
-rw-r--r-- | libavformat/nut.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nut.h b/libavformat/nut.h index 35593e97b7..8d9695245c 100644 --- a/libavformat/nut.h +++ b/libavformat/nut.h @@ -110,6 +110,7 @@ int64_t ff_lsb2full(StreamContext *stream, int64_t lsb); int ff_nut_sp_pos_cmp(Syncpoint *a, Syncpoint *b); int ff_nut_sp_pts_cmp(Syncpoint *a, Syncpoint *b); void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t ts); +void ff_nut_free_sp(NUTContext *nut); extern const Dispositions ff_nut_dispositions[]; |