9#ifndef SKYWAY_CORE_STREAM_LOCAL_VIDEO_STREAM_HPP_ 
   10#define SKYWAY_CORE_STREAM_LOCAL_VIDEO_STREAM_HPP_ 
   12#include <api/media_stream_interface.h> 
   14#include "skyway/core/interface/local_media_stream.hpp" 
   21using LocalMediaStream = interface::LocalMediaStream;
 
   27    rtc::scoped_refptr<webrtc::MediaStreamTrackInterface> 
Track() 
const override;
 
   31    bool Enable() 
override;
 
   33    bool Disable() 
override;
 
   35    void SetContentHint(webrtc::VideoTrackInterface::ContentHint content_hint);
 
   39    rtc::scoped_refptr<webrtc::VideoTrackInterface> track_;
 
 
LocalPersonで扱うVideoStream
Definition video_stream.hpp:24
rtc::scoped_refptr< webrtc::MediaStreamTrackInterface > Track() const override
Trackを取得します。