Commit 20758cef authored by Max Kellermann's avatar Max Kellermann

decoder/opus: make internal methods "private"

parent 27293852
......@@ -105,13 +105,15 @@ public:
bool ReadNextPage(OggSyncState &oy);
DecoderCommand HandlePackets();
bool Seek(OggSyncState &oy, uint64_t where_frame);
private:
DecoderCommand HandlePacket(const ogg_packet &packet);
DecoderCommand HandleBOS(const ogg_packet &packet);
DecoderCommand HandleEOS();
DecoderCommand HandleTags(const ogg_packet &packet);
DecoderCommand HandleAudio(const ogg_packet &packet);
bool Seek(OggSyncState &oy, uint64_t where_frame);
};
MPDOpusDecoder::~MPDOpusDecoder()
......
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