decoder/opus: make internal methods "private"

This commit is contained in:
Max Kellermann 2016-05-11 17:27:02 +02:00
parent 272938529d
commit 20758cef30
1 changed files with 4 additions and 2 deletions

View File

@ -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()