libeplayer3/writer: remove constructors/destructors from writer class

This commit is contained in:
martii
2014-04-26 14:57:22 +02:00
parent 8199257e8c
commit ad8620e76a
5 changed files with 4 additions and 3 deletions

View File

@@ -48,8 +48,5 @@ class Writer
virtual void Init(void) { }
virtual bool Write(int fd, AVFormatContext *avfc, AVStream *stream, AVPacket *packet, int64_t pts);
Writer() { Init (); }
~Writer() {}
};
#endif