* Copyright (c) 2021-2021 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef HISTREAMER_PLUGIN_CORE_WRAPPER_H
#define HISTREAMER_PLUGIN_CORE_WRAPPER_H
#include "foundation/pre_defines.h"
#include "plugin/core/demuxer.h"
#include "plugin/core/muxer.h"
#include "plugin/interface/demuxer_plugin.h"
#include "plugin/interface/muxer_plugin.h"
namespace OHOS {
namespace Media {
namespace Plugin {
struct DataSourceWrapper : DataSource {
DataSourceWrapper(uint32_t pkgVersion, std::shared_ptr<DataSourceHelper> dataSource);
~DataSourceWrapper() override = default;
Status ReadAt(int64_t offset, std::shared_ptr<Buffer>& buffer, size_t expectedLen) override;
Status GetSize(uint64_t& size) override;
Seekable GetSeekable() override;
private:
MEDIA_UNUSED uint32_t version;
std::shared_ptr<DataSourceHelper> helper;
};
struct DataSinkWrapper : DataSink {
DataSinkWrapper(uint32_t pkgVersion, std::shared_ptr<DataSinkHelper> dataSink);
~DataSinkWrapper() override = default;
Status WriteAt(int64_t offset, const std::shared_ptr<Buffer>& buffer) override;
private:
MEDIA_UNUSED uint32_t version;
std::shared_ptr<DataSinkHelper> helper;
};
void ConvertToMediaInfoHelper(uint32_t pkgVersion, const MediaInfo& src, MediaInfoHelper& dest);
}
}
}
#endif