1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et cindent: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "mozilla/dom/AudioEncoder.h"
#include "EncoderConfig.h"
#include "EncoderTraits.h"
#include "EncoderTypes.h"
#include "MediaData.h"
#include "mozilla/Assertions.h"
#include "mozilla/Logging.h"
#include "mozilla/Maybe.h"
#include "mozilla/dom/AudioDataBinding.h"
#include "mozilla/dom/AudioEncoderBinding.h"
#include "mozilla/dom/EncodedAudioChunk.h"
#include "mozilla/dom/EncodedAudioChunkBinding.h"
#include "mozilla/dom/Promise.h"
#include "mozilla/dom/WebCodecsUtils.h"
extern mozilla::LazyLogModule gWebCodecsLog;
namespace mozilla::dom {
#ifdef LOG_INTERNAL
# undef LOG_INTERNAL
#endif // LOG_INTERNAL
#define LOG_INTERNAL(level, msg, ...) \
MOZ_LOG(gWebCodecsLog, LogLevel::level, (msg, ##__VA_ARGS__))
#ifdef LOG
# undef LOG
#endif // LOG
#define LOG(msg, ...) LOG_INTERNAL(Debug, msg, ##__VA_ARGS__)
#ifdef LOGW
# undef LOGW
#endif // LOGW
#define LOGW(msg, ...) LOG_INTERNAL(Warning, msg, ##__VA_ARGS__)
#ifdef LOGE
# undef LOGE
#endif // LOGE
#define LOGE(msg, ...) LOG_INTERNAL(Error, msg, ##__VA_ARGS__)
#ifdef LOGV
# undef LOGV
#endif // LOGV
#define LOGV(msg, ...) LOG_INTERNAL(Verbose, msg, ##__VA_ARGS__)
NS_IMPL_CYCLE_COLLECTION_INHERITED(AudioEncoder, DOMEventTargetHelper,
mErrorCallback, mOutputCallback)
NS_IMPL_ADDREF_INHERITED(AudioEncoder, DOMEventTargetHelper)
NS_IMPL_RELEASE_INHERITED(AudioEncoder, DOMEventTargetHelper)
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(AudioEncoder)
NS_INTERFACE_MAP_END_INHERITING(DOMEventTargetHelper)
/*
* Below are helper classes
*/
AudioEncoderConfigInternal::AudioEncoderConfigInternal(
const nsAString& aCodec, Maybe<uint32_t> aSampleRate,
Maybe<uint32_t> aNumberOfChannels, Maybe<uint32_t> aBitrate,
BitrateMode aBitrateMode)
: mCodec(aCodec),
mSampleRate(aSampleRate),
mNumberOfChannels(aNumberOfChannels),
mBitrate(aBitrate),
mBitrateMode(aBitrateMode) {}
AudioEncoderConfigInternal::AudioEncoderConfigInternal(
const AudioEncoderConfig& aConfig)
: AudioEncoderConfigInternal(
aConfig.mCodec, OptionalToMaybe(aConfig.mSampleRate),
OptionalToMaybe(aConfig.mNumberOfChannels),
OptionalToMaybe(aConfig.mBitrate), aConfig.mBitrateMode) {
DebugOnly<nsCString> errorMessage;
if (aConfig.mCodec.EqualsLiteral("opus") && aConfig.mOpus.WasPassed()) {
// All values are in range at this point, the config is known valid.
OpusSpecific specific;
if (aConfig.mOpus.Value().mComplexity.WasPassed()) {
specific.mComplexity = aConfig.mOpus.Value().mComplexity.Value();
} else {
// https://w3c.github.io/webcodecs/opus_codec_registration.html#dom-opusencoderconfig-complexity
// If no value is specificied, the default value is platform-specific:
// User Agents SHOULD set a default of 5 for mobile platforms, and a
// default of 9 for all other platforms.
if (IsOnAndroid()) {
specific.mComplexity = 5;
} else {
specific.mComplexity = 9;
}
}
specific.mApplication = OpusSpecific::Application::Unspecified;
specific.mFrameDuration = aConfig.mOpus.Value().mFrameDuration;
specific.mPacketLossPerc = aConfig.mOpus.Value().mPacketlossperc;
specific.mUseDTX = aConfig.mOpus.Value().mUsedtx;
specific.mUseInBandFEC = aConfig.mOpus.Value().mUseinbandfec;
mSpecific = AsVariant(specific);
}
MOZ_ASSERT(AudioEncoderTraits::Validate(aConfig, errorMessage));
}
AudioEncoderConfigInternal::AudioEncoderConfigInternal(
const AudioEncoderConfigInternal& aConfig)
: AudioEncoderConfigInternal(aConfig.mCodec, aConfig.mSampleRate,
aConfig.mNumberOfChannels, aConfig.mBitrate,
aConfig.mBitrateMode) {}
void AudioEncoderConfigInternal::SetSpecific(
const EncoderConfig::CodecSpecific& aSpecific) {
mSpecific = aSpecific;
}
/*
* The followings are helpers for AudioEncoder methods
*/
static void CloneConfiguration(RootedDictionary<AudioEncoderConfig>& aDest,
JSContext* aCx,
const AudioEncoderConfig& aConfig) {
aDest.mCodec = aConfig.mCodec;
if (aConfig.mNumberOfChannels.WasPassed()) {
aDest.mNumberOfChannels.Construct(aConfig.mNumberOfChannels.Value());
}
if (aConfig.mSampleRate.WasPassed()) {
aDest.mSampleRate.Construct(aConfig.mSampleRate.Value());
}
if (aConfig.mBitrate.WasPassed()) {
aDest.mBitrate.Construct(aConfig.mBitrate.Value());
}
if (aConfig.mOpus.WasPassed()) {
aDest.mOpus.Construct(aConfig.mOpus.Value());
// Handle the default value manually since it's different on mobile
if (!aConfig.mOpus.Value().mComplexity.WasPassed()) {
if (IsOnAndroid()) {
aDest.mOpus.Value().mComplexity.Construct(5);
} else {
aDest.mOpus.Value().mComplexity.Construct(9);
}
}
}
aDest.mBitrateMode = aConfig.mBitrateMode;
}
static bool IsAudioEncodeSupported(const nsAString& aCodec) {
LOG("IsEncodeSupported: %s", NS_ConvertUTF16toUTF8(aCodec).get());
return aCodec.EqualsLiteral("opus") || aCodec.EqualsLiteral("vorbis");
}
static bool CanEncode(const RefPtr<AudioEncoderConfigInternal>& aConfig,
nsCString& aErrorMessage) {
// TODO: Enable WebCodecs on Android (Bug 1840508)
if (IsOnAndroid()) {
return false;
}
if (!IsAudioEncodeSupported(aConfig->mCodec)) {
return false;
}
if (!IsSupportedAudioCodec(aConfig->mCodec)) {
aErrorMessage.AppendPrintf("%s is not supported",
NS_ConvertUTF16toUTF8(aConfig->mCodec).get());
return false;
}
if (aConfig->mNumberOfChannels.value() > 256) {
aErrorMessage.AppendPrintf(
"Invalid number of channels, supported range is between 1 and 256");
return false;
}
// Somewhat arbitrarily chosen, but reflects real-life and what the rest of
// Gecko does.
if (aConfig->mSampleRate.value() < 3000 ||
aConfig->mSampleRate.value() > 384000) {
aErrorMessage.AppendPrintf(
"Invalid sample-rate of %d, supported range is 3000Hz to 384000Hz",
aConfig->mSampleRate.value());
return false;
}
return EncoderSupport::Supports(aConfig);
}
nsCString AudioEncoderConfigInternal::ToString() const {
nsCString rv;
rv.AppendPrintf("AudioEncoderConfigInternal: %s",
NS_ConvertUTF16toUTF8(mCodec).get());
if (mSampleRate) {
rv.AppendPrintf(" %" PRIu32 "Hz", mSampleRate.value());
}
if (mNumberOfChannels) {
rv.AppendPrintf(" %" PRIu32 "ch", mNumberOfChannels.value());
}
if (mBitrate) {
rv.AppendPrintf(" %" PRIu32 "bps", mBitrate.value());
}
rv.AppendPrintf(" (%s)", mBitrateMode == mozilla::dom::BitrateMode::Constant
? "CRB"
: "VBR");
return rv;
}
EncoderConfig AudioEncoderConfigInternal::ToEncoderConfig() const {
const mozilla::BitrateMode bitrateMode =
mBitrateMode == mozilla::dom::BitrateMode::Constant
? mozilla::BitrateMode::Constant
: mozilla::BitrateMode::Variable;
CodecType type = CodecType::Opus;
EncoderConfig::CodecSpecific specific{void_t{}};
if (mCodec.EqualsLiteral("opus")) {
type = CodecType::Opus;
MOZ_ASSERT(mSpecific.is<void_t>() || mSpecific.is<OpusSpecific>());
specific = mSpecific;
} else if (mCodec.EqualsLiteral("vorbis")) {
type = CodecType::Vorbis;
} else if (mCodec.EqualsLiteral("flac")) {
type = CodecType::Flac;
} else if (StringBeginsWith(mCodec, u"pcm-"_ns)) {
type = CodecType::PCM;
} else if (mCodec.EqualsLiteral("ulaw")) {
type = CodecType::PCM;
} else if (mCodec.EqualsLiteral("alaw")) {
type = CodecType::PCM;
} else if (StringBeginsWith(mCodec, u"mp4a."_ns)) {
type = CodecType::AAC;
}
// This should have been checked ahead of time -- we can't encode without
// knowing the sample-rate or the channel count at the very least.
MOZ_ASSERT(mSampleRate.value());
MOZ_ASSERT(mNumberOfChannels.value());
return EncoderConfig(type, mNumberOfChannels.value(), bitrateMode,
AssertedCast<uint32_t>(mSampleRate.value()),
mBitrate.valueOr(0), specific);
}
bool AudioEncoderConfigInternal::Equals(
const AudioEncoderConfigInternal& aOther) const {
return false;
}
bool AudioEncoderConfigInternal::CanReconfigure(
const AudioEncoderConfigInternal& aOther) const {
return false;
}
already_AddRefed<WebCodecsConfigurationChangeList>
AudioEncoderConfigInternal::Diff(
const AudioEncoderConfigInternal& aOther) const {
return MakeRefPtr<WebCodecsConfigurationChangeList>().forget();
}
/* static */
bool AudioEncoderTraits::IsSupported(
const AudioEncoderConfigInternal& aConfig) {
nsCString errorMessage;
bool canEncode =
CanEncode(MakeRefPtr<AudioEncoderConfigInternal>(aConfig), errorMessage);
if (!canEncode) {
LOGE("Can't encode configuration %s: %s", aConfig.ToString().get(),
errorMessage.get());
}
return canEncode;
}
// https://w3c.github.io/webcodecs/#valid-audioencoderconfig
/* static */
bool AudioEncoderTraits::Validate(const AudioEncoderConfig& aConfig,
nsCString& aErrorMessage) {
Maybe<nsString> codec = ParseCodecString(aConfig.mCodec);
if (!codec || codec->IsEmpty()) {
LOGE("Validating AudioEncoderConfig: invalid codec string");
return false;
}
if (!aConfig.mNumberOfChannels.WasPassed()) {
aErrorMessage.AppendPrintf("Channel count required");
return false;
}
if (aConfig.mNumberOfChannels.Value() == 0) {
aErrorMessage.AppendPrintf(
"Invalid number of channels, supported range is between 1 and 256");
return false;
}
if (!aConfig.mSampleRate.WasPassed()) {
aErrorMessage.AppendPrintf("Sample-rate required");
return false;
}
if (aConfig.mSampleRate.Value() == 0) {
aErrorMessage.AppendPrintf("Invalid sample-rate of 0");
return false;
}
if (aConfig.mBitrate.WasPassed() &&
aConfig.mBitrate.Value() > std::numeric_limits<int>::max()) {
aErrorMessage.AppendPrintf("Invalid config: bitrate value too large");
return false;
}
// https://github.com/w3c/webcodecs/issues/816
if ((aConfig.mBitrate.WasPassed() && aConfig.mBitrate.Value() == 0)) {
aErrorMessage.AssignLiteral(
"Invalid AudioEncoderConfig: bitrate equal to 0");
LOGE("%s", aErrorMessage.get());
return false;
}
if (codec->EqualsLiteral("opus")) {
// This comes from
// https://w3c.github.io/webcodecs/opus_codec_registration.html#opus-encoder-config
if (aConfig.mBitrate.WasPassed() && (aConfig.mBitrate.Value() < 6000 ||
aConfig.mBitrate.Value() > 510000)) {
aErrorMessage.AppendPrintf(
"Invalid config: bitrate value outside of [6k, 510k] for opus");
return false;
}
if (aConfig.mOpus.WasPassed()) {
// Verify value ranges
const std::array validFrameDurationUs = {2500, 5000, 10000,
20000, 40000, 60000};
if (std::find(validFrameDurationUs.begin(), validFrameDurationUs.end(),
aConfig.mOpus.Value().mFrameDuration) ==
validFrameDurationUs.end()) {
aErrorMessage.AppendPrintf("Invalid config: invalid frame duration");
return false;
}
if (aConfig.mOpus.Value().mComplexity.WasPassed() &&
aConfig.mOpus.Value().mComplexity.Value() > 10) {
aErrorMessage.AppendPrintf(
"Invalid config: Opus complexity greater than 10");
return false;
}
if (aConfig.mOpus.Value().mPacketlossperc > 100) {
aErrorMessage.AppendPrintf(
"Invalid config: Opus packet loss percentage greater than 100");
return false;
}
}
}
return true;
}
/* static */
RefPtr<AudioEncoderConfigInternal> AudioEncoderTraits::CreateConfigInternal(
const AudioEncoderConfig& aConfig) {
nsCString errorMessage;
if (!AudioEncoderTraits::Validate(aConfig, errorMessage)) {
return nullptr;
}
return MakeRefPtr<AudioEncoderConfigInternal>(aConfig);
}
/* static */
RefPtr<mozilla::AudioData> AudioEncoderTraits::CreateInputInternal(
const dom::AudioData& aInput,
const dom::VideoEncoderEncodeOptions& /* unused */) {
return aInput.ToAudioData();
}
/*
* Below are AudioEncoder implementation
*/
AudioEncoder::AudioEncoder(
nsIGlobalObject* aParent, RefPtr<WebCodecsErrorCallback>&& aErrorCallback,
RefPtr<EncodedAudioChunkOutputCallback>&& aOutputCallback)
: EncoderTemplate(aParent, std::move(aErrorCallback),
std::move(aOutputCallback)) {
MOZ_ASSERT(mErrorCallback);
MOZ_ASSERT(mOutputCallback);
LOG("AudioEncoder %p ctor", this);
}
AudioEncoder::~AudioEncoder() {
LOG("AudioEncoder %p dtor", this);
(void)ResetInternal(NS_ERROR_DOM_ABORT_ERR);
}
JSObject* AudioEncoder::WrapObject(JSContext* aCx,
JS::Handle<JSObject*> aGivenProto) {
AssertIsOnOwningThread();
return AudioEncoder_Binding::Wrap(aCx, this, aGivenProto);
}
// https://w3c.github.io/webcodecs/#dom-audioencoder-audioencoder
/* static */
already_AddRefed<AudioEncoder> AudioEncoder::Constructor(
const GlobalObject& aGlobal, const AudioEncoderInit& aInit,
ErrorResult& aRv) {
nsCOMPtr<nsIGlobalObject> global = do_QueryInterface(aGlobal.GetAsSupports());
if (!global) {
aRv.Throw(NS_ERROR_FAILURE);
return nullptr;
}
return MakeAndAddRef<AudioEncoder>(
global.get(), RefPtr<WebCodecsErrorCallback>(aInit.mError),
RefPtr<EncodedAudioChunkOutputCallback>(aInit.mOutput));
}
// https://w3c.github.io/webcodecs/#dom-audioencoder-isconfigsupported
/* static */
already_AddRefed<Promise> AudioEncoder::IsConfigSupported(
const GlobalObject& aGlobal, const AudioEncoderConfig& aConfig,
ErrorResult& aRv) {
LOG("AudioEncoder::IsConfigSupported, config: %s",
NS_ConvertUTF16toUTF8(aConfig.mCodec).get());
nsCOMPtr<nsIGlobalObject> global = do_QueryInterface(aGlobal.GetAsSupports());
if (!global) {
aRv.Throw(NS_ERROR_FAILURE);
return nullptr;
}
RefPtr<Promise> p = Promise::Create(global.get(), aRv);
if (NS_WARN_IF(aRv.Failed())) {
return p.forget();
}
nsCString errorMessage;
if (!AudioEncoderTraits::Validate(aConfig, errorMessage)) {
p->MaybeRejectWithTypeError(errorMessage);
return p.forget();
}
// TODO: Move the following works to another thread to unblock the current
// thread, as what spec suggests.
RootedDictionary<AudioEncoderConfig> config(aGlobal.Context());
CloneConfiguration(config, aGlobal.Context(), aConfig);
auto configInternal = MakeRefPtr<AudioEncoderConfigInternal>(aConfig);
bool canEncode = CanEncode(configInternal, errorMessage);
if (!canEncode) {
LOG("CanEncode failed: %s", errorMessage.get());
}
RootedDictionary<AudioEncoderSupport> s(aGlobal.Context());
s.mConfig.Construct(std::move(config));
s.mSupported.Construct(canEncode);
p->MaybeResolve(s);
return p.forget();
}
RefPtr<EncodedAudioChunk> AudioEncoder::EncodedDataToOutputType(
nsIGlobalObject* aGlobalObject, const RefPtr<MediaRawData>& aData) {
AssertIsOnOwningThread();
// Package into an EncodedAudioChunk
auto buffer =
MakeRefPtr<MediaAlignedByteBuffer>(aData->Data(), aData->Size());
auto encoded = MakeRefPtr<EncodedAudioChunk>(
aGlobalObject, buffer.forget(), EncodedAudioChunkType::Key,
aData->mTime.ToMicroseconds(),
aData->mDuration.IsZero() ? Nothing()
: Some(aData->mDuration.ToMicroseconds()));
return encoded;
}
void AudioEncoder::EncoderConfigToDecoderConfig(
JSContext* aCx, const RefPtr<MediaRawData>& aRawData,
const AudioEncoderConfigInternal& aSrcConfig,
AudioDecoderConfig& aDestConfig) const {
MOZ_ASSERT(aCx);
MOZ_ASSERT(aSrcConfig.mSampleRate.isSome());
MOZ_ASSERT(aSrcConfig.mNumberOfChannels.isSome());
uint32_t sampleRate = aSrcConfig.mSampleRate.value();
uint32_t channelCount = aSrcConfig.mNumberOfChannels.value();
// Check if the encoder had to modify the settings because of codec
// constraints. e.g. FFmpegAudioEncoder can encode any sample-rate, but if the
// codec is Opus, then it will resample the audio one of the specific rates
// supported by the encoder.
if (aRawData->mConfig) {
sampleRate = aRawData->mConfig->mSampleRate;
channelCount = aRawData->mConfig->mNumberOfChannels;
}
aDestConfig.mCodec = aSrcConfig.mCodec;
aDestConfig.mNumberOfChannels = channelCount;
aDestConfig.mSampleRate = sampleRate;
if (aRawData->mExtraData && !aRawData->mExtraData->IsEmpty()) {
Span<const uint8_t> description(aRawData->mExtraData->Elements(),
aRawData->mExtraData->Length());
if (!CopyExtradataToDescription(aCx, description,
aDestConfig.mDescription.Construct())) {
LOGE("Failed to copy extra data");
}
}
}
#undef LOG
#undef LOGW
#undef LOGE
#undef LOGV
#undef LOG_INTERNAL
} // namespace mozilla::dom
|