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
10
namespace
skyway {
11
namespace
media {
12
namespace
codec {
13
17
struct
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_ */
skyway::media::codec::VP8
VP8コーデック
Definition
vp8.hpp:17
skyway::media::codec::VP8::Name
std::string Name() const override
コーデック名
Definition
vp8.hpp:18
skyway::media::codec::VP8::Parameters
std::map< std::string, std::string > Parameters() const override
コーデックのパラメータ
Definition
vp8.hpp:19
skyway::media::codec::VideoCodec
映像コーデック
Definition
video_codec.hpp:26
include
skyway
media
codec
vp8.hpp
構築:
1.9.8