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