Skip to content

Commit

Permalink
ビルドエラーを修正する
Browse files Browse the repository at this point in the history
  • Loading branch information
torikizi committed Oct 16, 2024
1 parent e420968 commit 4f1a460
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/sora/scalable_track_source.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class ScalableVideoTrackSource : public rtc::AdaptedVideoTrackSource {
virtual ~ScalableVideoTrackSource();

bool is_screencast() const override;
absl::optional<bool> needs_denoising() const override;
std::optional<bool> needs_denoising() const override;
webrtc::MediaSourceInterface::SourceState state() const override;
bool remote() const override;
bool OnCapturedFrame(const webrtc::VideoFrame& frame);
Expand Down
2 changes: 1 addition & 1 deletion src/scalable_track_source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ bool ScalableVideoTrackSource::is_screencast() const {
return false;
}

absl::optional<bool> ScalableVideoTrackSource::needs_denoising() const {
std::optional<bool> ScalableVideoTrackSource::needs_denoising() const {
return false;
}

Expand Down

0 comments on commit 4f1a460

Please sign in to comment.