37 lines
688 B
C++
37 lines
688 B
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
// Copyright The Music Player Daemon Project
|
|
|
|
#pragma once
|
|
|
|
extern "C" {
|
|
#include "libavformat/avio.h"
|
|
}
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
#include <span>
|
|
|
|
class DecoderClient;
|
|
class InputStream;
|
|
|
|
struct AvioStream {
|
|
DecoderClient *const client;
|
|
InputStream &input;
|
|
|
|
AVIOContext *io;
|
|
|
|
AvioStream(DecoderClient *_client, InputStream &_input)
|
|
:client(_client), input(_input), io(nullptr) {}
|
|
|
|
~AvioStream();
|
|
|
|
bool Open();
|
|
|
|
private:
|
|
int Read(std::span<std::byte> dest);
|
|
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);
|
|
};
|