Fixed memory leak in FLV library.

This commit is contained in:
Thulinma 2013-04-05 16:36:29 +02:00
parent 014aa97770
commit 7565b705ad
2 changed files with 18 additions and 6 deletions

View file

@ -39,6 +39,7 @@ namespace FLV {
Tag(const Tag& O); ///< Copy constructor, copies the contents of an existing tag.
Tag & operator=(const Tag& O); ///< Assignment operator - works exactly like the copy constructor.
Tag(const RTMPStream::Chunk& O); ///<Copy constructor from a RTMP chunk.
~Tag(); ///< Generic destructor.
//loader functions
bool ChunkLoader(const RTMPStream::Chunk& O);
bool DTSCLoader(DTSC::Stream & S);