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

Issue 2308573002: Adding AudioNetworkAdaptor interfaces. (Closed)

Created:
4 years, 3 months ago by minyue-webrtc
Modified:
4 years, 3 months ago
CC:
webrtc-reviews_webrtc.org, kwiberg-webrtc, tlegrand-webrtc, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, peah-webrtc
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

Adding AudioNetworkAdaptor interfaces. AudioNetworkAdaptor is supposed to facilitate AudioEncoder to adapt to varying network conditions. This is the first of a sequence of CLs that are to add one implementation of AudioNetworkAdaptor. This CL illustrates the interfaces of the AudioNetworkAdaptor. BUG=webrtc:6303 Committed: https://crrev.com/7610f85a2bfe2878450914d78e6a85639515275f Cr-Commit-Position: refs/heads/master@{#14115}

Patch Set 1 #

Total comments: 24

Patch Set 2 : after review #

Patch Set 3 : correction #

Total comments: 2

Patch Set 4 : removing non-abstract-class methods #

Messages

Total messages: 39 (17 generated)
minyue-webrtc
Hi Henrik and Karl, I'd like you to review this CL. This is the first ...
4 years, 3 months ago (2016-09-02 14:13:35 UTC) #7
hlundin-webrtc
Nice. Two comments/questions inline. https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h File webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h (right): https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h#newcode40 webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h:40: static AudioNetworkAdaptor* Create(); What is ...
4 years, 3 months ago (2016-09-05 12:55:46 UTC) #10
minyue-webrtc
Thanks for the comments! See my reply and a new patch set will follow. https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h ...
4 years, 3 months ago (2016-09-05 13:12:39 UTC) #11
kwiberg-webrtc
https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h File webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h (right): https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h#newcode12 webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h:12: #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_INCLUDE_AUDIO_NETWORK_ADAPTOR_H_ Is there any way to rename files ...
4 years, 3 months ago (2016-09-05 13:36:46 UTC) #12
minyue-webrtc
Thanks for the review! A new patch is added. PTAL again, thanks. https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h File webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h ...
4 years, 3 months ago (2016-09-05 14:49:31 UTC) #13
minyue-webrtc
PS2 was not complete. Please take a look at PS3.
4 years, 3 months ago (2016-09-06 08:58:32 UTC) #14
hlundin-webrtc
https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h File webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h (right): https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h#newcode12 webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h:12: #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_INCLUDE_AUDIO_NETWORK_ADAPTOR_H_ On 2016/09/05 13:36:46, kwiberg-webrtc wrote: > Is ...
4 years, 3 months ago (2016-09-06 09:18:05 UTC) #15
minyue-webrtc
See my reply on the ctor/Create() choice, WDYT? https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h File webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h (right): https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h#newcode21 webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h:21: // ...
4 years, 3 months ago (2016-09-06 10:15:27 UTC) #16
minyue-webrtc
On 2016/09/06 10:15:27, minyue-webrtc wrote: > See my reply on the ctor/Create() choice, WDYT? > ...
4 years, 3 months ago (2016-09-06 10:31:08 UTC) #17
kwiberg-webrtc
https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h File webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h (right): https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h#newcode12 webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h:12: #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_INCLUDE_AUDIO_NETWORK_ADAPTOR_H_ On 2016/09/06 09:18:05, hlundin-webrtc wrote: > On ...
4 years, 3 months ago (2016-09-06 12:23:24 UTC) #18
minyue-webrtc
Thanks for the suggestions! PTAL at PS4. https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h File webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h (right): https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h#newcode12 webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h:12: #define WEBRTC_MODULES_AUDIO_CODING_AUDIO_NETWORK_ADAPTOR_INCLUDE_AUDIO_NETWORK_ADAPTOR_H_ ...
4 years, 3 months ago (2016-09-06 13:22:20 UTC) #21
kwiberg-webrtc
https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h File webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h (right): https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h#newcode42 webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h:42: AudioNetworkAdaptor(); On 2016/09/06 13:22:20, minyue-webrtc wrote: > On 2016/09/06 ...
4 years, 3 months ago (2016-09-06 13:28:50 UTC) #22
minyue-webrtc
https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h File webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h (right): https://codereview.webrtc.org/2308573002/diff/10001/webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h#newcode42 webrtc/modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor.h:42: AudioNetworkAdaptor(); On 2016/09/06 13:28:50, kwiberg-webrtc wrote: > On 2016/09/06 ...
4 years, 3 months ago (2016-09-06 14:46:49 UTC) #23
hlundin-webrtc
lgtm
4 years, 3 months ago (2016-09-07 07:58:23 UTC) #24
kwiberg-webrtc
lgtm
4 years, 3 months ago (2016-09-07 09:39:27 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2308573002/110001
4 years, 3 months ago (2016-09-07 09:42:56 UTC) #27
commit-bot: I haz the power
Try jobs failed on following builders: linux_baremetal on master.tryserver.webrtc (JOB_TIMED_OUT, no build URL)
4 years, 3 months ago (2016-09-07 11:43:32 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2308573002/110001
4 years, 3 months ago (2016-09-07 11:47:11 UTC) #31
commit-bot: I haz the power
Try jobs failed on following builders: linux_baremetal on master.tryserver.webrtc (JOB_FAILED, no build URL)
4 years, 3 months ago (2016-09-07 12:55:18 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.webrtc.org/2308573002/110001
4 years, 3 months ago (2016-09-07 20:46:58 UTC) #35
commit-bot: I haz the power
Committed patchset #4 (id:110001)
4 years, 3 months ago (2016-09-07 20:51:55 UTC) #37
commit-bot: I haz the power
4 years, 3 months ago (2016-09-07 20:52:07 UTC) #39
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/7610f85a2bfe2878450914d78e6a85639515275f
Cr-Commit-Position: refs/heads/master@{#14115}

Powered by Google App Engine
This is Rietveld 408576698