Index: webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.cc |
diff --git a/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.cc b/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.cc |
index 3aaa9c7dc860398cb0bea98c50bb58d2bdc93610..8cef40d42e807afec74299b1f7af84b87a1276e3 100644 |
--- a/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.cc |
+++ b/webrtc/modules/video_coding/codecs/vp8/simulcast_encoder_adapter.cc |
@@ -75,9 +75,6 @@ int VerifyCodec(const webrtc::VideoCodec* inst) { |
if (inst->width <= 1 || inst->height <= 1) { |
return WEBRTC_VIDEO_CODEC_ERR_PARAMETER; |
} |
- if (inst->VP8().feedbackModeOn && inst->numberOfSimulcastStreams > 1) { |
- return WEBRTC_VIDEO_CODEC_ERR_PARAMETER; |
- } |
if (inst->VP8().automaticResizeOn && inst->numberOfSimulcastStreams > 1) { |
return WEBRTC_VIDEO_CODEC_ERR_PARAMETER; |
} |