diff --git a/api/video_codecs/video_decoder_factory.h b/api/video_codecs/video_decoder_factory.h index 6048cb27fb..92a2697ca5 100644 --- a/api/video_codecs/video_decoder_factory.h +++ b/api/video_codecs/video_decoder_factory.h @@ -55,8 +55,9 @@ class RTC_EXPORT VideoDecoderFactory { virtual std::unique_ptr Create(const Environment& env, const SdpVideoFormat& format); - // TODO: bugs.webrtc.org/15791 - Make private or delete when all callers are - // migrated to `Create`. + private: + // TODO: bugs.webrtc.org/15791 - Delete when all derived classes implement + // `Create`. virtual std::unique_ptr CreateVideoDecoder( const SdpVideoFormat& format); };