| 234 | } |
| 235 | |
| 236 | void VorbisDecoderImpl::reset() { |
| 237 | if (mDecoder.isOpen()) { |
| 238 | mDecoder.seek(0); |
| 239 | mPosition = 0; |
| 240 | mEndOfStream = false; |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | // VorbisDecoder public implementation |
| 245 | VorbisDecoder::VorbisDecoder() : mImpl(fl::make_unique<VorbisDecoderImpl>()) {} |