(Auto)update libjingle 69588608-> 69588980

git-svn-id: http://webrtc.googlecode.com/svn/trunk@6502 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
buildbot@webrtc.org 2014-06-20 00:18:36 +00:00
parent 8563ef448a
commit 0970dd8767
2 changed files with 1 additions and 4 deletions

View File

@ -3261,7 +3261,7 @@ bool WebRtcVideoMediaChannel::SendFrame(
} }
const VideoFrame* frame_out = frame; const VideoFrame* frame_out = frame;
talk_base::scoped_ptr<VideoFrame> processed_frame; talk_base::scoped_ptr<VideoFrame> processed_frame;
// Disable muting for screencast. // TODO(hellner): Remove the need for disabling mute when screencasting.
const bool mute = (send_channel->muted() && !is_screencast); const bool mute = (send_channel->muted() && !is_screencast);
send_channel->ProcessFrame(*frame_out, mute, processed_frame.use()); send_channel->ProcessFrame(*frame_out, mute, processed_frame.use());
if (processed_frame) { if (processed_frame) {
@ -3767,7 +3767,6 @@ bool WebRtcVideoMediaChannel::SetSendCodec(
return true; return true;
} }
static std::string ToString(webrtc::VideoCodecComplexity complexity) { static std::string ToString(webrtc::VideoCodecComplexity complexity) {
switch (complexity) { switch (complexity) {
case webrtc::kComplexityNormal: case webrtc::kComplexityNormal:

View File

@ -45,7 +45,6 @@
#error "Bogus include." #error "Bogus include."
#endif #endif
namespace webrtc { namespace webrtc {
class VideoCaptureModule; class VideoCaptureModule;
class VideoDecoder; class VideoDecoder;
@ -390,7 +389,6 @@ class WebRtcVideoMediaChannel : public talk_base::MessageHandler,
} }
bool RemoveCapturer(uint32 ssrc); bool RemoveCapturer(uint32 ssrc);
talk_base::MessageQueue* worker_thread() { return engine_->worker_thread(); } talk_base::MessageQueue* worker_thread() { return engine_->worker_thread(); }
void QueueBlackFrame(uint32 ssrc, int64 timestamp, int framerate); void QueueBlackFrame(uint32 ssrc, int64 timestamp, int framerate);
void FlushBlackFrame(uint32 ssrc, int64 timestamp); void FlushBlackFrame(uint32 ssrc, int64 timestamp);