Fix a typo for decoder naming

Bug: None
Change-Id: I1e1e7fe1d3efb6e7f302d7633673418b5de7212c
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/173940
Commit-Queue: Karl Wiberg <kwiberg@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#31135}
This commit is contained in:
Hua, Chunbo 2020-04-27 11:55:56 +08:00 committed by Commit Bot
parent f7f7cc93aa
commit b261118156
3 changed files with 3 additions and 3 deletions

View File

@ -90,7 +90,7 @@ class AudioDecoderFactoryT : public AudioDecoderFactory {
// be a struct with the following static member functions:
//
// // Converts |audio_format| to a ConfigType instance. Returns an empty
// // optional if |audio_format| doesn't correctly specify an decoder of our
// // optional if |audio_format| doesn't correctly specify a decoder of our
// // type.
// absl::optional<ConfigType> SdpToConfig(const SdpAudioFormat& audio_format);
//

View File

@ -21,7 +21,7 @@
namespace webrtc {
namespace test {
// An decoder factory with a single underlying AudioDecoder object, intended for
// A decoder factory with a single underlying AudioDecoder object, intended for
// test purposes. Each call to MakeAudioDecoder returns a proxy for the same
// decoder, typically a mock or fake decoder.
class AudioDecoderProxyFactory : public AudioDecoderFactory {

View File

@ -20,7 +20,7 @@
namespace webrtc {
namespace test {
// An decoder factory with a single underlying VideoDecoder object, intended for
// A decoder factory with a single underlying VideoDecoder object, intended for
// test purposes. Each call to CreateVideoDecoder returns a proxy for the same
// decoder, typically an instance of FakeDecoder or MockEncoder.
class VideoDecoderProxyFactory final : public VideoDecoderFactory {