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

Issue 1917163002: New interface (AudioDecoderFactory), with an implementation (Closed)

Created:
4 years, 8 months ago by kwiberg-webrtc
Modified:
4 years, 7 months ago
CC:
webrtc-reviews_webrtc.org, kwiberg-webrtc, tlegrand-webrtc, tterriberry_mozilla.com, audio-team_agora.io, hlundin-webrtc, peah-webrtc, minyue-webrtc
Base URL:
https://chromium.googlesource.com/external/webrtc.git@master
Target Ref:
refs/pending/heads/master
Project:
webrtc
Visibility:
Public.

Description

New interface (AudioDecoderFactory), with an implementation This is a first draft of what we're hoping to use to create all AudioDecoder instances. Follow-up CLs will start using this internally in NetEq instead of calling constructors manually. BUG=webrtc:5801 Committed: https://crrev.com/c01c6a423cfe60e2d0bf1f700bdc331ba1d29572 Cr-Commit-Position: refs/heads/master@{#12548}

Patch Set 1 #

Total comments: 46

Patch Set 2 : review #

Unified diffs Side-by-side diffs Delta from patch set Stats (+490 lines, -0 lines) Patch
M webrtc/modules/audio_coding/BUILD.gn View 1 1 chunk +27 lines, -0 lines 0 comments Download
M webrtc/modules/audio_coding/audio_coding.gypi View 1 1 chunk +44 lines, -0 lines 0 comments Download
A webrtc/modules/audio_coding/codecs/audio_decoder_factory.h View 1 chunk +36 lines, -0 lines 0 comments Download
A webrtc/modules/audio_coding/codecs/audio_decoder_factory_unittest.cc View 1 1 chunk +117 lines, -0 lines 0 comments Download
A webrtc/modules/audio_coding/codecs/audio_format.h View 1 chunk +48 lines, -0 lines 0 comments Download
A webrtc/modules/audio_coding/codecs/audio_format.cc View 1 chunk +50 lines, -0 lines 0 comments Download
A webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.h View 1 1 chunk +26 lines, -0 lines 0 comments Download
A webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory.cc View 1 1 chunk +140 lines, -0 lines 0 comments Download
M webrtc/modules/modules.gyp View 1 2 chunks +2 lines, -0 lines 0 comments Download

Messages

Total messages: 17 (4 generated)
kwiberg-webrtc
4 years, 8 months ago (2016-04-26 22:56:09 UTC) #2
ossu
On 2016/04/26 22:56:09, kwiberg-webrtc wrote: LGTM. I've really no comments at this point. :)
4 years, 7 months ago (2016-04-27 12:54:23 UTC) #3
hlundin-webrtc
LGTM with a number of minor comments. https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/audio_coding.gypi File webrtc/modules/audio_coding/audio_coding.gypi (right): https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/audio_coding.gypi#newcode72 webrtc/modules/audio_coding/audio_coding.gypi:72: 'target_name': 'audio_codec_factory_interface', ...
4 years, 7 months ago (2016-04-27 14:35:57 UTC) #4
the sun
https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/BUILD.gn File webrtc/modules/audio_coding/BUILD.gn (right): https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/BUILD.gn#newcode55 webrtc/modules/audio_coding/BUILD.gn:55: source_set("builtin_audio_codec_factory") { _factories? Or is the intent to have ...
4 years, 7 months ago (2016-04-27 20:34:15 UTC) #5
ossu
Looks like I had a few comments after all... https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/codecs/audio_format.cc File webrtc/modules/audio_coding/codecs/audio_format.cc (right): https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/codecs/audio_format.cc#newcode41 webrtc/modules/audio_coding/codecs/audio_format.cc:41: ...
4 years, 7 months ago (2016-04-28 08:35:54 UTC) #6
hlundin-webrtc
https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/codecs/audio_format.cc File webrtc/modules/audio_coding/codecs/audio_format.cc (right): https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/codecs/audio_format.cc#newcode41 webrtc/modules/audio_coding/codecs/audio_format.cc:41: const char* sep = ""; On 2016/04/28 08:35:53, ossu ...
4 years, 7 months ago (2016-04-28 09:04:18 UTC) #7
kwiberg-webrtc
New patch set posted. https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/BUILD.gn File webrtc/modules/audio_coding/BUILD.gn (right): https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/BUILD.gn#newcode55 webrtc/modules/audio_coding/BUILD.gn:55: source_set("builtin_audio_codec_factory") { On 2016/04/27 20:34:14, ...
4 years, 7 months ago (2016-04-28 12:35:52 UTC) #8
the sun
lgtm https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/codecs/audio_format.h File webrtc/modules/audio_coding/codecs/audio_format.h (right): https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/codecs/audio_format.h#newcode23 webrtc/modules/audio_coding/codecs/audio_format.h:23: struct SdpAudioFormat { On 2016/04/28 12:35:52, kwiberg-webrtc wrote: ...
4 years, 7 months ago (2016-04-28 13:02:42 UTC) #9
ossu
https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/codecs/audio_format.h File webrtc/modules/audio_coding/codecs/audio_format.h (right): https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/codecs/audio_format.h#newcode29 webrtc/modules/audio_coding/codecs/audio_format.h:29: SdpAudioFormat(const char* name, int clockrate_hz, int num_channels); On 2016/04/28 ...
4 years, 7 months ago (2016-04-28 14:02:36 UTC) #10
kwiberg-webrtc
https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/codecs/audio_format.h File webrtc/modules/audio_coding/codecs/audio_format.h (right): https://codereview.webrtc.org/1917163002/diff/1/webrtc/modules/audio_coding/codecs/audio_format.h#newcode29 webrtc/modules/audio_coding/codecs/audio_format.h:29: SdpAudioFormat(const char* name, int clockrate_hz, int num_channels); On 2016/04/28 ...
4 years, 7 months ago (2016-04-28 19:35:22 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1917163002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1917163002/20001
4 years, 7 months ago (2016-04-28 19:35:40 UTC) #14
commit-bot: I haz the power
Committed patchset #2 (id:20001)
4 years, 7 months ago (2016-04-28 21:23:37 UTC) #15
commit-bot: I haz the power
4 years, 7 months ago (2016-05-01 22:01:23 UTC) #17
Message was sent while issue was closed.
Patchset 2 (id:??) landed as
https://crrev.com/c01c6a423cfe60e2d0bf1f700bdc331ba1d29572
Cr-Commit-Position: refs/heads/master@{#12548}

Powered by Google App Engine
This is Rietveld 408576698