From c76952534e0ab82b179d360f07beceb634a0a154 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 7 Jan 2013 23:05:33 +0100 Subject: decoder/Opus: implement seeking --- src/decoder/OggFind.cxx | 3 +-- src/decoder/OggFind.hxx | 8 +++++++ src/decoder/OpusDecoderPlugin.cxx | 44 +++++++++++++++++++++++++++++++++++---- 3 files changed, 49 insertions(+), 6 deletions(-) (limited to 'src/decoder') diff --git a/src/decoder/OggFind.cxx b/src/decoder/OggFind.cxx index 05d693122..821f75ca8 100644 --- a/src/decoder/OggFind.cxx +++ b/src/decoder/OggFind.cxx @@ -20,7 +20,6 @@ #include "config.h" #include "OggFind.hxx" #include "OggSyncState.hxx" -#include "InputStream.hxx" #include "util/Error.hxx" bool @@ -38,7 +37,7 @@ OggFindEOS(OggSyncState &oy, ogg_stream_state &os, ogg_packet &packet) } } -static bool +bool OggSeekPageAtOffset(OggSyncState &oy, ogg_stream_state &os, InputStream &is, InputStream::offset_type offset, int whence) { diff --git a/src/decoder/OggFind.hxx b/src/decoder/OggFind.hxx index 703510fb5..ad51ccdf3 100644 --- a/src/decoder/OggFind.hxx +++ b/src/decoder/OggFind.hxx @@ -21,6 +21,7 @@ #define MPD_OGG_FIND_HXX #include "check.h" +#include "InputStream.hxx" #include @@ -36,6 +37,13 @@ class OggSyncState; bool OggFindEOS(OggSyncState &oy, ogg_stream_state &os, ogg_packet &packet); +/** + * Seek the #InputStream and find the next Ogg page. + */ +bool +OggSeekPageAtOffset(OggSyncState &oy, ogg_stream_state &os, InputStream &is, + InputStream::offset_type offset, int whence); + /** * Try to find the end-of-stream (EOS) packet. Seek to the end of the * file if necessary. diff --git a/src/decoder/OpusDecoderPlugin.cxx b/src/decoder/OpusDecoderPlugin.cxx index 2f4f3df5b..fd8ed4e89 100644 --- a/src/decoder/OpusDecoderPlugin.cxx +++ b/src/decoder/OpusDecoderPlugin.cxx @@ -80,6 +80,8 @@ class MPDOpusDecoder { int opus_serialno; + ogg_int64_t eos_granulepos; + size_t frame_size; public: @@ -99,6 +101,8 @@ public: DecoderCommand HandleBOS(const ogg_packet &packet); DecoderCommand HandleTags(const ogg_packet &packet); DecoderCommand HandleAudio(const ogg_packet &packet); + + bool Seek(OggSyncState &oy, double where); }; MPDOpusDecoder::~MPDOpusDecoder() @@ -252,15 +256,16 @@ MPDOpusDecoder::HandleBOS(const ogg_packet &packet) return DecoderCommand::STOP; } - const ogg_int64_t eos_granulepos = - LoadEOSGranulePos(input_stream, &decoder, opus_serialno); + eos_granulepos = LoadEOSGranulePos(input_stream, &decoder, + opus_serialno); const double duration = eos_granulepos >= 0 ? double(eos_granulepos) / opus_sample_rate : -1.0; const AudioFormat audio_format(opus_sample_rate, SampleFormat::S16, channels); - decoder_initialized(decoder, audio_format, false, duration); + decoder_initialized(decoder, audio_format, + eos_granulepos > 0, duration); frame_size = audio_format.GetFrameSize(); /* allocate an output buffer for 16 bit PCM samples big enough @@ -324,6 +329,29 @@ MPDOpusDecoder::HandleAudio(const ogg_packet &packet) return DecoderCommand::NONE; } +bool +MPDOpusDecoder::Seek(OggSyncState &oy, double where_s) +{ + assert(eos_granulepos > 0); + assert(input_stream.seekable); + assert(input_stream.size > 0); + assert(input_stream.offset >= 0); + + const ogg_int64_t where_granulepos(where_s * opus_sample_rate); + + /* interpolate the file offset where we expect to find the + given granule position */ + /* TODO: implement binary search */ + InputStream::offset_type offset(where_granulepos * input_stream.size + / eos_granulepos); + + if (!OggSeekPageAtOffset(oy, os, input_stream, offset, SEEK_SET)) + return false; + + decoder_timestamp(decoder, where_s); + return true; +} + static void mpd_opus_stream_decode(Decoder &decoder, InputStream &input_stream) @@ -343,12 +371,20 @@ mpd_opus_stream_decode(Decoder &decoder, while (true) { auto cmd = d.HandlePackets(); + if (cmd == DecoderCommand::SEEK) { + if (d.Seek(oy, decoder_seek_where(decoder))) + decoder_command_finished(decoder); + else + decoder_seek_error(decoder); + + continue; + } + if (cmd != DecoderCommand::NONE) break; if (!d.ReadNextPage(oy)) break; - } } -- cgit v1.2.3