"git@developer.sourcefind.cn:OpenDAS/torchani.git" did not exist on "6fe30cc908413dc1a4ed4918340f2a3b7af856d2"
Unverified Commit 6fc18d63 authored by Prabhat Roy's avatar Prabhat Roy Committed by GitHub
Browse files

Drop virtual from private member functions of Decoder class (#4027)

parent 50468715
...@@ -59,11 +59,11 @@ class Decoder : public MediaDecoder { ...@@ -59,11 +59,11 @@ class Decoder : public MediaDecoder {
private: private:
// mark below function for a proper invocation // mark below function for a proper invocation
virtual bool enableLogLevel(int level) const; bool enableLogLevel(int level) const;
virtual void logCallback(int level, const std::string& message); void logCallback(int level, const std::string& message);
virtual int readCallback(uint8_t* buf, int size); int readCallback(uint8_t* buf, int size);
virtual int64_t seekCallback(int64_t offset, int whence); int64_t seekCallback(int64_t offset, int whence);
virtual int shutdownCallback(); int shutdownCallback();
bool openStreams(std::vector<DecoderMetadata>* metadata); bool openStreams(std::vector<DecoderMetadata>* metadata);
Stream* findByIndex(int streamIndex) const; Stream* findByIndex(int streamIndex) const;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment