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

Issue 11189047: Add opus audio codec support in remoting (Closed)

Created:
8 years, 2 months ago by Sergey Ulanov
Modified:
8 years, 2 months ago
Reviewers:
DaleCurtis, Wez
CC:
chromium-reviews, jamiewalch+watch_chromium.org, hclam+watch_chromium.org, simonmorris+watch_chromium.org, dcaiafa+watch_chromium.org, wez+watch_chromium.org, amit, sanjeevr, garykac+watch_chromium.org, feature-media-reviews_chromium.org, lambroslambrou+watch_chromium.org, rmsousa+watch_chromium.org, alexeypa+watch_chromium.org, sergeyu+watch_chromium.org
Visibility:
Public.

Description

Add opus audio codec support in remoting BUG=154714 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=163675

Patch Set 1 #

Patch Set 2 : #

Total comments: 53

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : #

Patch Set 8 : #

Total comments: 40

Patch Set 9 : #

Patch Set 10 : #

Total comments: 10

Patch Set 11 : #

Patch Set 12 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+742 lines, -15 lines) Patch
M media/base/sinc_resampler.h View 1 2 3 4 5 6 7 8 1 chunk +4 lines, -0 lines 0 comments Download
M media/base/sinc_resampler.cc View 1 2 3 4 2 chunks +6 lines, -0 lines 0 comments Download
M remoting/codec/DEPS View 1 chunk +1 line, -0 lines 0 comments Download
M remoting/codec/audio_decoder.cc View 2 chunks +3 lines, -0 lines 0 comments Download
A remoting/codec/audio_decoder_opus.h View 1 chunk +41 lines, -0 lines 0 comments Download
A remoting/codec/audio_decoder_opus.cc View 1 2 3 4 1 chunk +132 lines, -0 lines 0 comments Download
A remoting/codec/audio_encoder_opus.h View 1 2 3 4 5 6 7 8 9 1 chunk +63 lines, -0 lines 0 comments Download
A remoting/codec/audio_encoder_opus.cc View 1 2 3 4 5 6 7 8 9 1 chunk +240 lines, -0 lines 0 comments Download
A remoting/codec/audio_encoder_opus_unittest.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +189 lines, -0 lines 0 comments Download
M remoting/host/client_session.cc View 1 2 2 chunks +3 lines, -0 lines 0 comments Download
M remoting/protocol/session_config.cc View 1 chunk +4 lines, -0 lines 0 comments Download
M remoting/remoting.gyp View 1 2 3 3 chunks +8 lines, -0 lines 0 comments Download
M third_party/opus/opus.gyp View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +29 lines, -15 lines 0 comments Download
A third_party/opus/overrides/include/opus_defines.h View 1 2 3 4 5 6 7 1 chunk +19 lines, -0 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
Sergey Ulanov
Dale - please review media changes. Wez - everything else. I'm still missing unittests for ...
8 years, 2 months ago (2012-10-17 23:23:10 UTC) #1
DaleCurtis
Haven't had a chance to look at your usage case yet. http://codereview.chromium.org/11189047/diff/2001/media/base/sinc_resampler.h File media/base/sinc_resampler.h (right): ...
8 years, 2 months ago (2012-10-18 00:45:01 UTC) #2
Wez
http://codereview.chromium.org/11189047/diff/2001/remoting/codec/audio_decoder_opus.cc File remoting/codec/audio_decoder_opus.cc (right): http://codereview.chromium.org/11189047/diff/2001/remoting/codec/audio_decoder_opus.cc#newcode30 remoting/codec/audio_decoder_opus.cc:30: AudioDecoderOpus::~AudioDecoderOpus() { Call DestroyDecoder() here? http://codereview.chromium.org/11189047/diff/2001/remoting/codec/audio_decoder_opus.cc#newcode37 remoting/codec/audio_decoder_opus.cc:37: CHECK(decoder_); Don't ...
8 years, 2 months ago (2012-10-19 01:51:32 UTC) #3
Sergey Ulanov
Addressed all comments and added unittests. http://codereview.chromium.org/11189047/diff/2001/media/base/sinc_resampler.h File media/base/sinc_resampler.h (right): http://codereview.chromium.org/11189047/diff/2001/media/base/sinc_resampler.h#newcode21 media/base/sinc_resampler.h:21: static const int ...
8 years, 2 months ago (2012-10-19 20:54:29 UTC) #4
Sergey Ulanov
wez: ping
8 years, 2 months ago (2012-10-22 17:53:17 UTC) #5
DaleCurtis
SincResampler stuff lgtm % nit. http://codereview.chromium.org/11189047/diff/15007/media/base/sinc_resampler.h File media/base/sinc_resampler.h (right): http://codereview.chromium.org/11189047/diff/15007/media/base/sinc_resampler.h#newcode19 media/base/sinc_resampler.h:19: // How many samples ...
8 years, 2 months ago (2012-10-22 20:48:41 UTC) #6
Sergey Ulanov
http://codereview.chromium.org/11189047/diff/15007/media/base/sinc_resampler.h File media/base/sinc_resampler.h (right): http://codereview.chromium.org/11189047/diff/15007/media/base/sinc_resampler.h#newcode19 media/base/sinc_resampler.h:19: // How many samples may be requested from the ...
8 years, 2 months ago (2012-10-22 22:07:23 UTC) #7
Wez
http://codereview.chromium.org/11189047/diff/2001/remoting/codec/audio_decoder_opus.cc File remoting/codec/audio_decoder_opus.cc (right): http://codereview.chromium.org/11189047/diff/2001/remoting/codec/audio_decoder_opus.cc#newcode103 remoting/codec/audio_decoder_opus.cc:103: static_cast<int>(decoded_data->size())); On 2012/10/19 20:54:30, sergeyu wrote: > On 2012/10/19 ...
8 years, 2 months ago (2012-10-22 22:50:21 UTC) #8
Sergey Ulanov
http://codereview.chromium.org/11189047/diff/2001/remoting/codec/audio_decoder_opus.cc File remoting/codec/audio_decoder_opus.cc (right): http://codereview.chromium.org/11189047/diff/2001/remoting/codec/audio_decoder_opus.cc#newcode103 remoting/codec/audio_decoder_opus.cc:103: static_cast<int>(decoded_data->size())); On 2012/10/22 22:50:21, Wez wrote: > On 2012/10/19 ...
8 years, 2 months ago (2012-10-23 00:43:49 UTC) #9
Wez
lgtm http://codereview.chromium.org/11189047/diff/29019/remoting/codec/audio_encoder_opus_unittest.cc File remoting/codec/audio_encoder_opus_unittest.cc (right): http://codereview.chromium.org/11189047/diff/29019/remoting/codec/audio_encoder_opus_unittest.cc#newcode42 remoting/codec/audio_encoder_opus_unittest.cc:42: // The value is choose such that all ...
8 years, 2 months ago (2012-10-23 05:10:09 UTC) #10
Sergey Ulanov
http://codereview.chromium.org/11189047/diff/29019/remoting/codec/audio_encoder_opus_unittest.cc File remoting/codec/audio_encoder_opus_unittest.cc (right): http://codereview.chromium.org/11189047/diff/29019/remoting/codec/audio_encoder_opus_unittest.cc#newcode42 remoting/codec/audio_encoder_opus_unittest.cc:42: // The value is choose such that all the ...
8 years, 2 months ago (2012-10-23 17:36:31 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sergeyu@chromium.org/11189047/21022
8 years, 2 months ago (2012-10-23 17:38:30 UTC) #12
commit-bot: I haz the power
8 years, 2 months ago (2012-10-23 19:55:43 UTC) #13
Change committed as 163650

Powered by Google App Engine
This is Rietveld 408576698