diff options
author | Max Kellermann <max@duempel.org> | 2014-12-22 21:58:25 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-22 21:58:25 +0100 |
commit | a2c6d5e1483138b0068d3010843e72d82249e3d2 (patch) | |
tree | 9214d75d0ed2c02c86c87285d25545642913eca1 /src | |
parent | 373706c92b9f71f3b9bd88f21bfdb4c2ce34be47 (diff) |
decoder/ffmpeg: move functions into the AvioStream struct
Diffstat (limited to 'src')
-rw-r--r-- | src/decoder/plugins/FfmpegIo.cxx | 50 | ||||
-rw-r--r-- | src/decoder/plugins/FfmpegIo.hxx | 7 |
2 files changed, 37 insertions, 20 deletions
diff --git a/src/decoder/plugins/FfmpegIo.cxx b/src/decoder/plugins/FfmpegIo.cxx index 12df15bb2..d47e575bc 100644 --- a/src/decoder/plugins/FfmpegIo.cxx +++ b/src/decoder/plugins/FfmpegIo.cxx @@ -31,49 +31,60 @@ AvioStream::~AvioStream() av_free(io); } -static int -mpd_ffmpeg_stream_read(void *opaque, uint8_t *buf, int size) +inline int +AvioStream::Read(void *dest, int size) { - AvioStream *stream = (AvioStream *)opaque; - - return decoder_read(stream->decoder, stream->input, - (void *)buf, size); + return decoder_read(decoder, input, dest, size); } -static int64_t -mpd_ffmpeg_stream_seek(void *opaque, int64_t pos, int whence) +inline int64_t +AvioStream::Seek(int64_t pos, int whence) { - AvioStream *stream = (AvioStream *)opaque; - switch (whence) { case SEEK_SET: break; case SEEK_CUR: - pos += stream->input.GetOffset(); + pos += input.GetOffset(); break; case SEEK_END: - if (!stream->input.KnownSize()) + if (!input.KnownSize()) return -1; - pos += stream->input.GetSize(); + pos += input.GetSize(); break; case AVSEEK_SIZE: - if (!stream->input.KnownSize()) + if (!input.KnownSize()) return -1; - return stream->input.GetSize(); + return input.GetSize(); default: return -1; } - if (!stream->input.LockSeek(pos, IgnoreError())) + if (!input.LockSeek(pos, IgnoreError())) return -1; - return stream->input.GetOffset(); + return input.GetOffset(); +} + +int +AvioStream::_Read(void *opaque, uint8_t *buf, int size) +{ + AvioStream &stream = *(AvioStream *)opaque; + + return stream.Read(buf, size); +} + +int64_t +AvioStream::_Seek(void *opaque, int64_t pos, int whence) +{ + AvioStream &stream = *(AvioStream *)opaque; + + return stream.Seek(pos, whence); } bool @@ -81,8 +92,7 @@ AvioStream::Open() { io = avio_alloc_context(buffer, sizeof(buffer), false, this, - mpd_ffmpeg_stream_read, nullptr, - input.IsSeekable() - ? mpd_ffmpeg_stream_seek : nullptr); + _Read, nullptr, + input.IsSeekable() ? _Seek : nullptr); return io != nullptr; } diff --git a/src/decoder/plugins/FfmpegIo.hxx b/src/decoder/plugins/FfmpegIo.hxx index 1b154faa9..bbd3a5b62 100644 --- a/src/decoder/plugins/FfmpegIo.hxx +++ b/src/decoder/plugins/FfmpegIo.hxx @@ -45,6 +45,13 @@ struct AvioStream { ~AvioStream(); bool Open(); + +private: + int Read(void *buffer, int size); + int64_t Seek(int64_t pos, int whence); + + static int _Read(void *opaque, uint8_t *buf, int size); + static int64_t _Seek(void *opaque, int64_t pos, int whence); }; #endif |