3#include <StormByte/multimedia/stream/attachment.hxx>
4#include <StormByte/multimedia/stream/audio.hxx>
5#include <StormByte/multimedia/stream/subtitle.hxx>
6#include <StormByte/multimedia/stream/video.hxx>
17namespace Alchemy::Media {
18 using AttachmentStream = StormByte::Multimedia::Stream::Attachment;
19 using AudioStream = StormByte::Multimedia::Stream::Audio;
20 using Decoders = std::vector<std::shared_ptr<const std::string>>;
21 using Encoders = std::vector<std::shared_ptr<const std::string>>;
22 using Stream = StormByte::Multimedia::Stream::Base;
23 using Streams = std::vector<Stream::PointerType>;
24 using SubtitleStream = StormByte::Multimedia::Stream::Subtitle;
25 using VideoStream = StormByte::Multimedia::Stream::Video;