SkyWay Linux SDK
読み取り中…
検索中…
一致する文字列を見つけられません
vp8.hpp
1//
2// vp8.hpp
3// skyway
4//
5// Created by sandabu on 2025/07/23.
6// Copyright © 2025 NTT DOCOMO BUSINESS, Inc. All rights reserved.
7//
8
9#ifndef SKYWAY_MEDIA_CODEC_VP8_HPP_
10#define SKYWAY_MEDIA_CODEC_VP8_HPP_
11
12#include "skyway/media/codec/video_codec.hpp"
13
14namespace skyway {
15namespace media {
16namespace codec {
17
22struct VP8 : public VideoCodec {
23 std::string Name() const override { return "VP8"; }
24 std::map<std::string, std::string> Parameters() const override { return {}; }
26 webrtc::VideoCodecType CodecType() const override { return webrtc::kVideoCodecVP8; }
28};
29
30} // namespace codec
31} // namespace media
32} // namespace skyway
33
34#endif /* SKYWAY_MEDIA_CODEC_VP8_HPP_ */
VP8コーデック
Definition vp8.hpp:22
std::string Name() const override
コーデック名
Definition vp8.hpp:23
std::map< std::string, std::string > Parameters() const override
コーデックのパラメータ
Definition vp8.hpp:24
映像コーデック
Definition video_codec.hpp:32