| Index: webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc | 
| diff --git a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc | 
| index 5714a07f2e38f5d8b5506047a8d55fc507b3dd63..e7a5b326ea4bfabc02c924683d01703f03363da8 100644 | 
| --- a/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc | 
| +++ b/webrtc/modules/video_coding/codecs/vp8/vp8_impl.cc | 
| @@ -1018,17 +1018,6 @@ int VP8EncoderImpl::GetEncodedPartitions(const VideoFrame& input_image, | 
| } else if (codec_.mode == kScreensharing) { | 
| result = WEBRTC_VIDEO_CODEC_TARGET_BITRATE_OVERSHOOT; | 
| } | 
| -    } else { | 
| -      // Required in case padding is applied to dropped frames. | 
| -      encoded_images_[encoder_idx]._length = 0; | 
| -      encoded_images_[encoder_idx]._frameType = kSkipFrame; | 
| -      codec_specific.codecType = kVideoCodecVP8; | 
| -      CodecSpecificInfoVP8* vp8Info = &(codec_specific.codecSpecific.VP8); | 
| -      vp8Info->pictureId = picture_id_[stream_idx]; | 
| -      vp8Info->simulcastIdx = stream_idx; | 
| -      vp8Info->keyIdx = kNoKeyIdx; | 
| -      encoded_complete_callback_->Encoded(encoded_images_[encoder_idx], | 
| -                                          &codec_specific, NULL); | 
| } | 
| } | 
| if (encoders_.size() == 1 && send_stream_[0]) { | 
|  |