Skip to content

Commit

Permalink
fix build with latest websdk
Browse files Browse the repository at this point in the history
  • Loading branch information
mpromonet committed Mar 5, 2024
1 parent 240f459 commit 8dd4992
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/VideoDecoderFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class VideoDecoderFactory : public webrtc::VideoDecoderFactory {
}
virtual ~VideoDecoderFactory() override {}

std::unique_ptr<webrtc::VideoDecoder> CreateVideoDecoder(const webrtc::SdpVideoFormat& format) override {
std::unique_ptr<webrtc::VideoDecoder> Create(const webrtc::Environment& env, const webrtc::SdpVideoFormat& format) override {
RTC_LOG(LS_INFO) << "Create Null Decoder format:" << format.ToString();
return std::make_unique<NullDecoder>(format);
}
Expand Down

0 comments on commit 8dd4992

Please sign in to comment.