Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: talk/media/webrtc/fakewebrtcvoiceengine.h

Issue 1537213002: Revert of Reland "Added option to specify a maximum file size when recording an AEC dump." (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « talk/media/base/mediaengine.h ('k') | talk/media/webrtc/webrtcvoiceengine.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2010 Google Inc. 3 * Copyright 2010 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 (const float* const* src, 106 (const float* const* src,
107 const webrtc::StreamConfig& reverse_input_config, 107 const webrtc::StreamConfig& reverse_input_config,
108 const webrtc::StreamConfig& reverse_output_config, 108 const webrtc::StreamConfig& reverse_output_config,
109 float* const* dest)); 109 float* const* dest));
110 WEBRTC_STUB(set_stream_delay_ms, (int delay)); 110 WEBRTC_STUB(set_stream_delay_ms, (int delay));
111 WEBRTC_STUB_CONST(stream_delay_ms, ()); 111 WEBRTC_STUB_CONST(stream_delay_ms, ());
112 WEBRTC_BOOL_STUB_CONST(was_stream_delay_set, ()); 112 WEBRTC_BOOL_STUB_CONST(was_stream_delay_set, ());
113 WEBRTC_VOID_STUB(set_stream_key_pressed, (bool key_pressed)); 113 WEBRTC_VOID_STUB(set_stream_key_pressed, (bool key_pressed));
114 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset)); 114 WEBRTC_VOID_STUB(set_delay_offset_ms, (int offset));
115 WEBRTC_STUB_CONST(delay_offset_ms, ()); 115 WEBRTC_STUB_CONST(delay_offset_ms, ());
116 WEBRTC_STUB(StartDebugRecording, 116 WEBRTC_STUB(StartDebugRecording, (const char filename[kMaxFilenameSize]));
117 (const char filename[kMaxFilenameSize], int64_t max_size_bytes)); 117 WEBRTC_STUB(StartDebugRecording, (FILE* handle));
118 WEBRTC_STUB(StartDebugRecording, (FILE * handle, int64_t max_size_bytes));
119 WEBRTC_STUB(StopDebugRecording, ()); 118 WEBRTC_STUB(StopDebugRecording, ());
120 WEBRTC_VOID_STUB(UpdateHistogramsOnCallEnd, ()); 119 WEBRTC_VOID_STUB(UpdateHistogramsOnCallEnd, ());
121 webrtc::EchoCancellation* echo_cancellation() const override { return NULL; } 120 webrtc::EchoCancellation* echo_cancellation() const override { return NULL; }
122 webrtc::EchoControlMobile* echo_control_mobile() const override { 121 webrtc::EchoControlMobile* echo_control_mobile() const override {
123 return NULL; 122 return NULL;
124 } 123 }
125 webrtc::GainControl* gain_control() const override { return NULL; } 124 webrtc::GainControl* gain_control() const override { return NULL; }
126 webrtc::HighPassFilter* high_pass_filter() const override { return NULL; } 125 webrtc::HighPassFilter* high_pass_filter() const override { return NULL; }
127 webrtc::LevelEstimator* level_estimator() const override { return NULL; } 126 webrtc::LevelEstimator* level_estimator() const override { return NULL; }
128 webrtc::NoiseSuppression* noise_suppression() const override { return NULL; } 127 webrtc::NoiseSuppression* noise_suppression() const override { return NULL; }
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 int playout_fail_channel_; 814 int playout_fail_channel_;
816 int send_fail_channel_; 815 int send_fail_channel_;
817 int recording_sample_rate_; 816 int recording_sample_rate_;
818 int playout_sample_rate_; 817 int playout_sample_rate_;
819 FakeAudioProcessing audio_processing_; 818 FakeAudioProcessing audio_processing_;
820 }; 819 };
821 820
822 } // namespace cricket 821 } // namespace cricket
823 822
824 #endif // TALK_SESSION_PHONE_FAKEWEBRTCVOICEENGINE_H_ 823 #endif // TALK_SESSION_PHONE_FAKEWEBRTCVOICEENGINE_H_
OLDNEW
« no previous file with comments | « talk/media/base/mediaengine.h ('k') | talk/media/webrtc/webrtcvoiceengine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698