2012-05-21 15:12:37 +04:00
|
|
|
|
/* 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/. */
|
2010-08-18 06:17:50 +04:00
|
|
|
|
|
2010-08-13 06:28:15 +04:00
|
|
|
|
#include "VideoUtils.h"
|
2015-07-16 21:52:43 +03:00
|
|
|
|
|
2017-06-20 18:56:55 +03:00
|
|
|
|
#include "ImageContainer.h"
|
2017-01-18 03:59:03 +03:00
|
|
|
|
#include "MediaContainerType.h"
|
2016-05-10 04:27:05 +03:00
|
|
|
|
#include "MediaPrefs.h"
|
2012-09-03 02:56:29 +04:00
|
|
|
|
#include "MediaResource.h"
|
2015-05-18 09:15:47 +03:00
|
|
|
|
#include "TimeUnits.h"
|
2013-09-26 23:06:59 +04:00
|
|
|
|
#include "VorbisUtils.h"
|
2017-06-20 18:56:55 +03:00
|
|
|
|
#include "mozilla/Base64.h"
|
2015-08-03 21:44:10 +03:00
|
|
|
|
#include "mozilla/SharedThreadPool.h"
|
2017-09-18 14:34:43 +03:00
|
|
|
|
#include "mozilla/SystemGroup.h"
|
|
|
|
|
#include "mozilla/TaskCategory.h"
|
2017-06-20 18:56:55 +03:00
|
|
|
|
#include "mozilla/TaskQueue.h"
|
|
|
|
|
#include "mozilla/Telemetry.h"
|
|
|
|
|
#include "nsCharSeparatedTokenizer.h"
|
|
|
|
|
#include "nsContentTypeParser.h"
|
|
|
|
|
#include "nsIConsoleService.h"
|
2014-10-13 02:53:43 +04:00
|
|
|
|
#include "nsIRandomGenerator.h"
|
|
|
|
|
#include "nsIServiceManager.h"
|
2017-06-20 18:56:55 +03:00
|
|
|
|
#include "nsMathUtils.h"
|
2015-09-29 03:06:14 +03:00
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
|
#include "nsThreadUtils.h"
|
2014-12-09 22:34:00 +03:00
|
|
|
|
|
2016-11-28 19:03:53 +03:00
|
|
|
|
#include <functional>
|
2013-07-30 18:25:31 +04:00
|
|
|
|
#include <stdint.h>
|
2012-01-11 12:23:07 +04:00
|
|
|
|
|
2013-11-04 02:45:19 +04:00
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
2016-10-04 23:38:52 +03:00
|
|
|
|
NS_NAMED_LITERAL_CSTRING(kEMEKeySystemClearkey, "org.w3.clearkey");
|
|
|
|
|
NS_NAMED_LITERAL_CSTRING(kEMEKeySystemWidevine, "com.widevine.alpha");
|
|
|
|
|
|
2014-02-04 05:49:21 +04:00
|
|
|
|
using layers::PlanarYCbCrImage;
|
2017-04-17 11:35:04 +03:00
|
|
|
|
using media::TimeUnit;
|
2014-02-04 05:49:21 +04:00
|
|
|
|
|
2016-04-26 04:16:23 +03:00
|
|
|
|
CheckedInt64 SaferMultDiv(int64_t aValue, uint32_t aMul, uint32_t aDiv) {
|
2015-09-24 03:42:54 +03:00
|
|
|
|
int64_t major = aValue / aDiv;
|
|
|
|
|
int64_t remainder = aValue % aDiv;
|
2016-04-26 04:16:23 +03:00
|
|
|
|
return CheckedInt64(remainder) * aMul / aDiv + CheckedInt64(major) * aMul;
|
2015-09-24 03:42:54 +03:00
|
|
|
|
}
|
|
|
|
|
|
2011-09-27 07:31:18 +04:00
|
|
|
|
// Converts from number of audio frames to microseconds, given the specified
|
2010-08-13 06:28:15 +04:00
|
|
|
|
// audio rate.
|
2012-08-22 19:56:38 +04:00
|
|
|
|
CheckedInt64 FramesToUsecs(int64_t aFrames, uint32_t aRate) {
|
2015-09-24 03:42:54 +03:00
|
|
|
|
return SaferMultDiv(aFrames, USECS_PER_S, aRate);
|
2010-08-13 06:28:15 +04:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-17 11:35:04 +03:00
|
|
|
|
TimeUnit FramesToTimeUnit(int64_t aFrames, uint32_t aRate) {
|
2015-09-24 03:42:54 +03:00
|
|
|
|
int64_t major = aFrames / aRate;
|
|
|
|
|
int64_t remainder = aFrames % aRate;
|
2017-04-17 11:35:04 +03:00
|
|
|
|
return TimeUnit::FromMicroseconds(major) * USECS_PER_S +
|
|
|
|
|
(TimeUnit::FromMicroseconds(remainder) * USECS_PER_S) / aRate;
|
2015-07-01 09:50:27 +03:00
|
|
|
|
}
|
|
|
|
|
|
2011-09-27 07:31:18 +04:00
|
|
|
|
// Converts from microseconds to number of audio frames, given the specified
|
2010-08-13 06:28:15 +04:00
|
|
|
|
// audio rate.
|
2012-08-22 19:56:38 +04:00
|
|
|
|
CheckedInt64 UsecsToFrames(int64_t aUsecs, uint32_t aRate) {
|
2015-09-24 03:42:54 +03:00
|
|
|
|
return SaferMultDiv(aUsecs, aRate, USECS_PER_S);
|
2010-08-13 06:28:15 +04:00
|
|
|
|
}
|
2011-06-24 02:08:54 +04:00
|
|
|
|
|
2015-06-18 17:45:05 +03:00
|
|
|
|
// Format TimeUnit as number of frames at given rate.
|
2017-04-17 11:35:04 +03:00
|
|
|
|
CheckedInt64 TimeUnitToFrames(const TimeUnit& aTime, uint32_t aRate) {
|
2015-06-18 17:45:05 +03:00
|
|
|
|
return UsecsToFrames(aTime.ToMicroseconds(), aRate);
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-01 07:39:04 +04:00
|
|
|
|
nsresult SecondsToUsecs(double aSeconds, int64_t& aOutUsecs) {
|
|
|
|
|
if (aSeconds * double(USECS_PER_S) > INT64_MAX) {
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
}
|
|
|
|
|
aOutUsecs = int64_t(aSeconds * double(USECS_PER_S));
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
|
static int32_t ConditionDimension(float aValue)
|
2011-06-24 02:08:54 +04:00
|
|
|
|
{
|
|
|
|
|
// This will exclude NaNs and too-big values.
|
2012-09-28 10:57:33 +04:00
|
|
|
|
if (aValue > 1.0 && aValue <= INT32_MAX)
|
2012-08-22 19:56:38 +04:00
|
|
|
|
return int32_t(NS_round(aValue));
|
2011-06-24 02:08:54 +04:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-29 05:00:33 +03:00
|
|
|
|
void
|
|
|
|
|
ScaleDisplayByAspectRatio(gfx::IntSize& aDisplay, float aAspectRatio)
|
2011-06-24 02:08:54 +04:00
|
|
|
|
{
|
|
|
|
|
if (aAspectRatio > 1.0) {
|
|
|
|
|
// Increase the intrinsic width
|
|
|
|
|
aDisplay.width = ConditionDimension(aAspectRatio * aDisplay.width);
|
|
|
|
|
} else {
|
|
|
|
|
// Increase the intrinsic height
|
|
|
|
|
aDisplay.height = ConditionDimension(aDisplay.height / aAspectRatio);
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-09-03 02:56:29 +04:00
|
|
|
|
|
|
|
|
|
static int64_t BytesToTime(int64_t offset, int64_t length, int64_t durationUs) {
|
|
|
|
|
NS_ASSERTION(length > 0, "Must have positive length");
|
|
|
|
|
double r = double(offset) / double(length);
|
|
|
|
|
if (r > 1.0)
|
|
|
|
|
r = 1.0;
|
|
|
|
|
return int64_t(double(durationUs) * r);
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-18 09:15:47 +03:00
|
|
|
|
media::TimeIntervals GetEstimatedBufferedTimeRanges(mozilla::MediaResource* aStream,
|
|
|
|
|
int64_t aDurationUsecs)
|
2012-09-03 02:56:29 +04:00
|
|
|
|
{
|
2015-05-18 09:15:47 +03:00
|
|
|
|
media::TimeIntervals buffered;
|
2012-09-03 02:56:29 +04:00
|
|
|
|
// Nothing to cache if the media takes 0us to play.
|
2015-05-18 09:15:47 +03:00
|
|
|
|
if (aDurationUsecs <= 0 || !aStream)
|
|
|
|
|
return buffered;
|
2012-09-03 02:56:29 +04:00
|
|
|
|
|
|
|
|
|
// Special case completely cached files. This also handles local files.
|
|
|
|
|
if (aStream->IsDataCachedToEndOfResource(0)) {
|
2015-05-18 09:15:47 +03:00
|
|
|
|
buffered +=
|
2017-04-17 11:35:04 +03:00
|
|
|
|
media::TimeInterval(TimeUnit::Zero(),
|
|
|
|
|
TimeUnit::FromMicroseconds(aDurationUsecs));
|
2015-05-18 09:15:47 +03:00
|
|
|
|
return buffered;
|
2012-09-03 02:56:29 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int64_t totalBytes = aStream->GetLength();
|
|
|
|
|
|
|
|
|
|
// If we can't determine the total size, pretend that we have nothing
|
|
|
|
|
// buffered. This will put us in a state of eternally-low-on-undecoded-data
|
|
|
|
|
// which is not great, but about the best we can do.
|
|
|
|
|
if (totalBytes <= 0)
|
2015-05-18 09:15:47 +03:00
|
|
|
|
return buffered;
|
2012-09-03 02:56:29 +04:00
|
|
|
|
|
|
|
|
|
int64_t startOffset = aStream->GetNextCachedData(0);
|
|
|
|
|
while (startOffset >= 0) {
|
|
|
|
|
int64_t endOffset = aStream->GetCachedDataEnd(startOffset);
|
|
|
|
|
// Bytes [startOffset..endOffset] are cached.
|
|
|
|
|
NS_ASSERTION(startOffset >= 0, "Integer underflow in GetBuffered");
|
|
|
|
|
NS_ASSERTION(endOffset >= 0, "Integer underflow in GetBuffered");
|
|
|
|
|
|
|
|
|
|
int64_t startUs = BytesToTime(startOffset, totalBytes, aDurationUsecs);
|
|
|
|
|
int64_t endUs = BytesToTime(endOffset, totalBytes, aDurationUsecs);
|
|
|
|
|
if (startUs != endUs) {
|
2015-05-18 09:15:47 +03:00
|
|
|
|
buffered +=
|
2017-04-17 11:35:04 +03:00
|
|
|
|
media::TimeInterval(TimeUnit::FromMicroseconds(startUs),
|
|
|
|
|
TimeUnit::FromMicroseconds(endUs));
|
2012-09-03 02:56:29 +04:00
|
|
|
|
}
|
|
|
|
|
startOffset = aStream->GetNextCachedData(endOffset);
|
|
|
|
|
}
|
2015-05-18 09:15:47 +03:00
|
|
|
|
return buffered;
|
2012-09-03 02:56:29 +04:00
|
|
|
|
}
|
|
|
|
|
|
2015-08-06 09:30:22 +03:00
|
|
|
|
void DownmixStereoToMono(mozilla::AudioDataValue* aBuffer,
|
|
|
|
|
uint32_t aFrames)
|
|
|
|
|
{
|
|
|
|
|
MOZ_ASSERT(aBuffer);
|
|
|
|
|
const int channels = 2;
|
|
|
|
|
for (uint32_t fIdx = 0; fIdx < aFrames; ++fIdx) {
|
|
|
|
|
#ifdef MOZ_SAMPLE_TYPE_FLOAT32
|
|
|
|
|
float sample = 0.0;
|
|
|
|
|
#else
|
|
|
|
|
int sample = 0;
|
|
|
|
|
#endif
|
|
|
|
|
// The sample of the buffer would be interleaved.
|
|
|
|
|
sample = (aBuffer[fIdx*channels] + aBuffer[fIdx*channels + 1]) * 0.5;
|
|
|
|
|
aBuffer[fIdx*channels] = aBuffer[fIdx*channels + 1] = sample;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 02:45:19 +04:00
|
|
|
|
bool
|
|
|
|
|
IsVideoContentType(const nsCString& aContentType)
|
|
|
|
|
{
|
|
|
|
|
NS_NAMED_LITERAL_CSTRING(video, "video");
|
|
|
|
|
if (FindInReadable(video, aContentType)) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-04 05:49:21 +04:00
|
|
|
|
bool
|
2017-08-29 05:00:33 +03:00
|
|
|
|
IsValidVideoRegion(const gfx::IntSize& aFrame,
|
|
|
|
|
const gfx::IntRect& aPicture,
|
|
|
|
|
const gfx::IntSize& aDisplay)
|
2014-02-04 05:49:21 +04:00
|
|
|
|
{
|
|
|
|
|
return
|
|
|
|
|
aFrame.width <= PlanarYCbCrImage::MAX_DIMENSION &&
|
|
|
|
|
aFrame.height <= PlanarYCbCrImage::MAX_DIMENSION &&
|
|
|
|
|
aFrame.width * aFrame.height <= MAX_VIDEO_WIDTH * MAX_VIDEO_HEIGHT &&
|
|
|
|
|
aFrame.width * aFrame.height != 0 &&
|
|
|
|
|
aPicture.width <= PlanarYCbCrImage::MAX_DIMENSION &&
|
|
|
|
|
aPicture.x < PlanarYCbCrImage::MAX_DIMENSION &&
|
|
|
|
|
aPicture.x + aPicture.width < PlanarYCbCrImage::MAX_DIMENSION &&
|
|
|
|
|
aPicture.height <= PlanarYCbCrImage::MAX_DIMENSION &&
|
|
|
|
|
aPicture.y < PlanarYCbCrImage::MAX_DIMENSION &&
|
|
|
|
|
aPicture.y + aPicture.height < PlanarYCbCrImage::MAX_DIMENSION &&
|
|
|
|
|
aPicture.width * aPicture.height <= MAX_VIDEO_WIDTH * MAX_VIDEO_HEIGHT &&
|
|
|
|
|
aPicture.width * aPicture.height != 0 &&
|
|
|
|
|
aDisplay.width <= PlanarYCbCrImage::MAX_DIMENSION &&
|
|
|
|
|
aDisplay.height <= PlanarYCbCrImage::MAX_DIMENSION &&
|
|
|
|
|
aDisplay.width * aDisplay.height <= MAX_VIDEO_WIDTH * MAX_VIDEO_HEIGHT &&
|
|
|
|
|
aDisplay.width * aDisplay.height != 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
|
already_AddRefed<SharedThreadPool> GetMediaThreadPool(MediaThreadType aType)
|
2014-06-18 09:07:02 +04:00
|
|
|
|
{
|
2015-05-07 07:01:43 +03:00
|
|
|
|
const char *name;
|
|
|
|
|
switch (aType) {
|
|
|
|
|
case MediaThreadType::PLATFORM_DECODER:
|
|
|
|
|
name = "MediaPDecoder";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2016-01-14 12:42:18 +03:00
|
|
|
|
MOZ_FALLTHROUGH_ASSERT("Unexpected MediaThreadType");
|
2015-05-07 07:01:43 +03:00
|
|
|
|
case MediaThreadType::PLAYBACK:
|
|
|
|
|
name = "MediaPlayback";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return SharedThreadPool::
|
2016-05-10 04:27:05 +03:00
|
|
|
|
Get(nsDependentCString(name), MediaPrefs::MediaThreadPoolDefaultCount());
|
2014-06-18 09:07:02 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-28 07:32:34 +04:00
|
|
|
|
bool
|
|
|
|
|
ExtractH264CodecDetails(const nsAString& aCodec,
|
|
|
|
|
int16_t& aProfile,
|
|
|
|
|
int16_t& aLevel)
|
|
|
|
|
{
|
2014-12-23 06:42:55 +03:00
|
|
|
|
// H.264 codecs parameters have a type defined as avcN.PPCCLL, where
|
|
|
|
|
// N = avc type. avc3 is avcc with SPS & PPS implicit (within stream)
|
2014-08-28 07:32:34 +04:00
|
|
|
|
// PP = profile_idc, CC = constraint_set flags, LL = level_idc.
|
|
|
|
|
// We ignore the constraint_set flags, as it's not clear from any
|
|
|
|
|
// documentation what constraints the platform decoders support.
|
|
|
|
|
// See http://blog.pearce.org.nz/2013/11/what-does-h264avc1-codecs-parameters.html
|
|
|
|
|
// for more details.
|
|
|
|
|
if (aCodec.Length() != strlen("avc1.PPCCLL")) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-23 06:42:55 +03:00
|
|
|
|
// Verify the codec starts with "avc1." or "avc3.".
|
2014-08-28 07:32:34 +04:00
|
|
|
|
const nsAString& sample = Substring(aCodec, 0, 5);
|
2014-12-23 06:42:55 +03:00
|
|
|
|
if (!sample.EqualsASCII("avc1.") && !sample.EqualsASCII("avc3.")) {
|
2014-08-28 07:32:34 +04:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-11 11:09:00 +03:00
|
|
|
|
// Extract the profile_idc and level_idc.
|
2014-08-28 07:32:34 +04:00
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
aProfile = PromiseFlatString(Substring(aCodec, 5, 2)).ToInteger(&rv, 16);
|
|
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
|
|
|
|
|
|
aLevel = PromiseFlatString(Substring(aCodec, 9, 2)).ToInteger(&rv, 16);
|
|
|
|
|
NS_ENSURE_SUCCESS(rv, false);
|
|
|
|
|
|
2015-03-18 06:10:57 +03:00
|
|
|
|
if (aLevel == 9) {
|
|
|
|
|
aLevel = H264_LEVEL_1_b;
|
|
|
|
|
} else if (aLevel <= 5) {
|
|
|
|
|
aLevel *= 10;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-03 16:54:00 +03:00
|
|
|
|
// Capture the constraint_set flag value for the purpose of Telemetry.
|
|
|
|
|
// We don't NS_ENSURE_SUCCESS here because ExtractH264CodecDetails doesn't
|
|
|
|
|
// care about this, but we make sure constraints is above 4 (constraint_set5_flag)
|
|
|
|
|
// otherwise collect 0 for unknown.
|
|
|
|
|
uint8_t constraints = PromiseFlatString(Substring(aCodec, 7, 2)).ToInteger(&rv, 16);
|
|
|
|
|
Telemetry::Accumulate(Telemetry::VIDEO_CANPLAYTYPE_H264_CONSTRAINT_SET_FLAG,
|
|
|
|
|
constraints >= 4 ? constraints : 0);
|
2015-02-11 11:09:00 +03:00
|
|
|
|
|
|
|
|
|
// 244 is the highest meaningful profile value (High 4:4:4 Intra Profile)
|
|
|
|
|
// that can be represented as single hex byte, otherwise collect 0 for unknown.
|
|
|
|
|
Telemetry::Accumulate(Telemetry::VIDEO_CANPLAYTYPE_H264_PROFILE,
|
|
|
|
|
aProfile <= 244 ? aProfile : 0);
|
|
|
|
|
|
|
|
|
|
// Make sure aLevel represents a value between levels 1 and 5.2,
|
|
|
|
|
// otherwise collect 0 for unknown.
|
|
|
|
|
Telemetry::Accumulate(Telemetry::VIDEO_CANPLAYTYPE_H264_LEVEL,
|
|
|
|
|
(aLevel >= 10 && aLevel <= 52) ? aLevel : 0);
|
|
|
|
|
|
2014-08-28 07:32:34 +04:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-13 02:53:43 +04:00
|
|
|
|
nsresult
|
2015-03-03 17:51:05 +03:00
|
|
|
|
GenerateRandomName(nsCString& aOutSalt, uint32_t aLength)
|
2014-10-13 02:53:43 +04:00
|
|
|
|
{
|
|
|
|
|
nsresult rv;
|
|
|
|
|
nsCOMPtr<nsIRandomGenerator> rg =
|
|
|
|
|
do_GetService("@mozilla.org/security/random-generator;1", &rv);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
2015-03-03 17:51:05 +03:00
|
|
|
|
// For each three bytes of random data we will get four bytes of ASCII.
|
2014-10-13 02:53:43 +04:00
|
|
|
|
const uint32_t requiredBytesLength =
|
2015-03-03 17:51:05 +03:00
|
|
|
|
static_cast<uint32_t>((aLength + 3) / 4 * 3);
|
2014-10-13 02:53:43 +04:00
|
|
|
|
|
|
|
|
|
uint8_t* buffer;
|
|
|
|
|
rv = rg->GenerateRandomBytes(requiredBytesLength, &buffer);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
|
|
nsAutoCString temp;
|
|
|
|
|
nsDependentCSubstring randomData(reinterpret_cast<const char*>(buffer),
|
|
|
|
|
requiredBytesLength);
|
|
|
|
|
rv = Base64Encode(randomData, temp);
|
2015-04-01 08:29:55 +03:00
|
|
|
|
free(buffer);
|
2014-10-13 02:53:43 +04:00
|
|
|
|
buffer = nullptr;
|
|
|
|
|
if (NS_FAILED (rv)) return rv;
|
|
|
|
|
|
2015-03-03 17:51:05 +03:00
|
|
|
|
aOutSalt = temp;
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
|
GenerateRandomPathName(nsCString& aOutSalt, uint32_t aLength)
|
|
|
|
|
{
|
|
|
|
|
nsresult rv = GenerateRandomName(aOutSalt, aLength);
|
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2014-10-13 02:53:43 +04:00
|
|
|
|
|
|
|
|
|
// Base64 characters are alphanumeric (a-zA-Z0-9) and '+' and '/', so we need
|
|
|
|
|
// to replace illegal characters -- notably '/'
|
2015-03-03 17:51:05 +03:00
|
|
|
|
aOutSalt.ReplaceChar(FILE_PATH_SEPARATOR FILE_ILLEGAL_CHARACTERS, '_');
|
2014-10-13 02:53:43 +04:00
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-16 21:13:49 +03:00
|
|
|
|
already_AddRefed<TaskQueue>
|
2017-04-25 09:57:55 +03:00
|
|
|
|
CreateMediaDecodeTaskQueue(const char* aName)
|
2014-12-09 22:34:00 +03:00
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
|
RefPtr<TaskQueue> queue = new TaskQueue(
|
2017-04-25 09:57:55 +03:00
|
|
|
|
GetMediaThreadPool(MediaThreadType::PLATFORM_DECODER), aName);
|
2015-07-20 09:07:25 +03:00
|
|
|
|
return queue.forget();
|
2014-12-09 22:34:00 +03:00
|
|
|
|
}
|
2014-10-13 02:53:43 +04:00
|
|
|
|
|
2015-09-29 03:06:11 +03:00
|
|
|
|
void
|
|
|
|
|
SimpleTimer::Cancel() {
|
|
|
|
|
if (mTimer) {
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
|
nsCOMPtr<nsIEventTarget> target;
|
|
|
|
|
mTimer->GetTarget(getter_AddRefs(target));
|
2017-06-01 23:41:18 +03:00
|
|
|
|
bool onCurrent;
|
|
|
|
|
nsresult rv = target->IsOnCurrentThread(&onCurrent);
|
|
|
|
|
MOZ_ASSERT(NS_SUCCEEDED(rv) && onCurrent);
|
2015-09-29 03:06:11 +03:00
|
|
|
|
#endif
|
|
|
|
|
mTimer->Cancel();
|
|
|
|
|
mTimer = nullptr;
|
|
|
|
|
}
|
|
|
|
|
mTask = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
SimpleTimer::Notify(nsITimer *timer) {
|
2015-10-18 08:24:48 +03:00
|
|
|
|
RefPtr<SimpleTimer> deathGrip(this);
|
2015-09-29 03:06:11 +03:00
|
|
|
|
if (mTask) {
|
|
|
|
|
mTask->Run();
|
|
|
|
|
mTask = nullptr;
|
|
|
|
|
}
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-26 21:18:20 +03:00
|
|
|
|
NS_IMETHODIMP
|
|
|
|
|
SimpleTimer::GetName(nsACString& aName)
|
|
|
|
|
{
|
|
|
|
|
aName.AssignLiteral("SimpleTimer");
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-29 03:06:11 +03:00
|
|
|
|
nsresult
|
2017-06-01 23:41:18 +03:00
|
|
|
|
SimpleTimer::Init(nsIRunnable* aTask, uint32_t aTimeoutMs, nsIEventTarget* aTarget)
|
2015-09-29 03:06:11 +03:00
|
|
|
|
{
|
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
|
|
// Get target thread first, so we don't have to cancel the timer if it fails.
|
2017-06-01 23:41:18 +03:00
|
|
|
|
nsCOMPtr<nsIEventTarget> target;
|
2015-09-29 03:06:11 +03:00
|
|
|
|
if (aTarget) {
|
|
|
|
|
target = aTarget;
|
|
|
|
|
} else {
|
2017-06-01 23:41:18 +03:00
|
|
|
|
target = GetMainThreadEventTarget();
|
|
|
|
|
if (!target) {
|
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
2015-09-29 03:06:11 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nsCOMPtr<nsITimer> timer = do_CreateInstance(NS_TIMER_CONTRACTID, &rv);
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
// Note: set target before InitWithCallback in case the timer fires before
|
|
|
|
|
// we change the event target.
|
2017-06-01 23:41:18 +03:00
|
|
|
|
rv = timer->SetTarget(target);
|
2015-09-29 03:06:11 +03:00
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
|
timer->Cancel();
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
rv = timer->InitWithCallback(this, aTimeoutMs, nsITimer::TYPE_ONE_SHOT);
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
|
return rv;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mTimer = timer.forget();
|
|
|
|
|
mTask = aTask;
|
|
|
|
|
return NS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-26 21:18:20 +03:00
|
|
|
|
NS_IMPL_ISUPPORTS(SimpleTimer, nsITimerCallback, nsINamed)
|
2015-09-29 03:06:11 +03:00
|
|
|
|
|
|
|
|
|
already_AddRefed<SimpleTimer>
|
2017-06-01 23:41:18 +03:00
|
|
|
|
SimpleTimer::Create(nsIRunnable* aTask, uint32_t aTimeoutMs, nsIEventTarget* aTarget)
|
2015-09-29 03:06:11 +03:00
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
|
RefPtr<SimpleTimer> t(new SimpleTimer());
|
2015-09-29 03:06:11 +03:00
|
|
|
|
if (NS_FAILED(t->Init(aTask, aTimeoutMs, aTarget))) {
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
return t.forget();
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-29 03:06:14 +03:00
|
|
|
|
void
|
|
|
|
|
LogToBrowserConsole(const nsAString& aMsg)
|
|
|
|
|
{
|
|
|
|
|
if (!NS_IsMainThread()) {
|
2015-11-19 12:00:39 +03:00
|
|
|
|
nsString msg(aMsg);
|
2017-06-12 22:34:10 +03:00
|
|
|
|
nsCOMPtr<nsIRunnable> task = NS_NewRunnableFunction(
|
|
|
|
|
"LogToBrowserConsole", [msg]() { LogToBrowserConsole(msg); });
|
2017-07-26 11:13:35 +03:00
|
|
|
|
SystemGroup::Dispatch(TaskCategory::Other, task.forget());
|
2015-09-29 03:06:14 +03:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
nsCOMPtr<nsIConsoleService> console(
|
|
|
|
|
do_GetService("@mozilla.org/consoleservice;1"));
|
|
|
|
|
if (!console) {
|
|
|
|
|
NS_WARNING("Failed to log message to console.");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
nsAutoString msg(aMsg);
|
|
|
|
|
console->LogStringMessage(msg.get());
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-05 05:03:48 +03:00
|
|
|
|
bool
|
|
|
|
|
ParseCodecsString(const nsAString& aCodecs, nsTArray<nsString>& aOutCodecs)
|
|
|
|
|
{
|
|
|
|
|
aOutCodecs.Clear();
|
|
|
|
|
bool expectMoreTokens = false;
|
|
|
|
|
nsCharSeparatedTokenizer tokenizer(aCodecs, ',');
|
|
|
|
|
while (tokenizer.hasMoreTokens()) {
|
2017-06-20 12:19:52 +03:00
|
|
|
|
const nsAString& token = tokenizer.nextToken();
|
2015-10-05 05:03:48 +03:00
|
|
|
|
expectMoreTokens = tokenizer.separatorAfterCurrentToken();
|
|
|
|
|
aOutCodecs.AppendElement(token);
|
|
|
|
|
}
|
|
|
|
|
if (expectMoreTokens) {
|
|
|
|
|
// Last codec name was empty
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-01 04:36:57 +03:00
|
|
|
|
bool
|
|
|
|
|
ParseMIMETypeString(const nsAString& aMIMEType,
|
|
|
|
|
nsString& aOutContainerType,
|
|
|
|
|
nsTArray<nsString>& aOutCodecs)
|
2015-10-05 05:03:48 +03:00
|
|
|
|
{
|
2016-07-01 04:36:57 +03:00
|
|
|
|
nsContentTypeParser parser(aMIMEType);
|
|
|
|
|
nsresult rv = parser.GetType(aOutContainerType);
|
|
|
|
|
if (NS_FAILED(rv)) {
|
2015-10-05 05:03:48 +03:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nsString codecsStr;
|
|
|
|
|
parser.GetParameter("codecs", codecsStr);
|
2016-07-01 04:36:57 +03:00
|
|
|
|
return ParseCodecsString(codecsStr, aOutCodecs);
|
2015-10-05 05:03:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
2016-07-01 04:36:57 +03:00
|
|
|
|
IsH264CodecString(const nsAString& aCodec)
|
2015-10-05 05:03:48 +03:00
|
|
|
|
{
|
2016-07-01 04:36:57 +03:00
|
|
|
|
int16_t profile = 0;
|
|
|
|
|
int16_t level = 0;
|
|
|
|
|
return ExtractH264CodecDetails(aCodec, profile, level);
|
2015-10-05 05:03:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
2016-07-01 04:36:57 +03:00
|
|
|
|
IsAACCodecString(const nsAString& aCodec)
|
2016-06-08 05:07:09 +03:00
|
|
|
|
{
|
2016-07-01 04:36:57 +03:00
|
|
|
|
return
|
|
|
|
|
aCodec.EqualsLiteral("mp4a.40.2") || // MPEG4 AAC-LC
|
2017-07-20 10:35:41 +03:00
|
|
|
|
aCodec.EqualsLiteral("mp4a.40.02") || // MPEG4 AAC-LC(for compatibility)
|
2016-07-01 04:36:57 +03:00
|
|
|
|
aCodec.EqualsLiteral("mp4a.40.5") || // MPEG4 HE-AAC
|
2017-07-20 10:35:41 +03:00
|
|
|
|
aCodec.EqualsLiteral("mp4a.40.05") || // MPEG4 HE-AAC(for compatibility)
|
2016-07-01 04:36:57 +03:00
|
|
|
|
aCodec.EqualsLiteral("mp4a.67") || // MPEG2 AAC-LC
|
|
|
|
|
aCodec.EqualsLiteral("mp4a.40.29"); // MPEG4 HE-AACv2
|
2016-06-08 05:07:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
2016-07-01 04:36:57 +03:00
|
|
|
|
IsVP8CodecString(const nsAString& aCodec)
|
2016-06-08 05:07:09 +03:00
|
|
|
|
{
|
2016-07-01 04:36:57 +03:00
|
|
|
|
return aCodec.EqualsLiteral("vp8") ||
|
|
|
|
|
aCodec.EqualsLiteral("vp8.0");
|
2016-06-08 05:07:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
2016-07-01 04:36:57 +03:00
|
|
|
|
IsVP9CodecString(const nsAString& aCodec)
|
2016-06-08 05:07:09 +03:00
|
|
|
|
{
|
2016-07-01 04:36:57 +03:00
|
|
|
|
return aCodec.EqualsLiteral("vp9") ||
|
|
|
|
|
aCodec.EqualsLiteral("vp9.0");
|
2016-06-08 05:07:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 09:39:32 +03:00
|
|
|
|
template <int N>
|
|
|
|
|
static bool
|
|
|
|
|
StartsWith(const nsACString& string, const char (&prefix)[N])
|
|
|
|
|
{
|
|
|
|
|
if (N - 1 > string.Length()) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return memcmp(string.Data(), prefix, N - 1) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UniquePtr<TrackInfo>
|
|
|
|
|
CreateTrackInfoWithMIMEType(const nsACString& aCodecMIMEType)
|
|
|
|
|
{
|
|
|
|
|
UniquePtr<TrackInfo> trackInfo;
|
|
|
|
|
if (StartsWith(aCodecMIMEType, "audio/")) {
|
|
|
|
|
trackInfo.reset(new AudioInfo());
|
|
|
|
|
trackInfo->mMimeType = aCodecMIMEType;
|
|
|
|
|
} else if (StartsWith(aCodecMIMEType, "video/")) {
|
|
|
|
|
trackInfo.reset(new VideoInfo());
|
|
|
|
|
trackInfo->mMimeType = aCodecMIMEType;
|
|
|
|
|
}
|
|
|
|
|
return trackInfo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
UniquePtr<TrackInfo>
|
2017-01-18 03:59:03 +03:00
|
|
|
|
CreateTrackInfoWithMIMETypeAndContainerTypeExtraParameters(
|
2016-10-07 09:39:32 +03:00
|
|
|
|
const nsACString& aCodecMIMEType,
|
2017-01-18 03:59:03 +03:00
|
|
|
|
const MediaContainerType& aContainerType)
|
2016-10-07 09:39:32 +03:00
|
|
|
|
{
|
|
|
|
|
UniquePtr<TrackInfo> trackInfo = CreateTrackInfoWithMIMEType(aCodecMIMEType);
|
|
|
|
|
if (trackInfo) {
|
|
|
|
|
VideoInfo* videoInfo = trackInfo->GetAsVideoInfo();
|
|
|
|
|
if (videoInfo) {
|
2017-01-18 03:59:03 +03:00
|
|
|
|
Maybe<int32_t> maybeWidth = aContainerType.ExtendedType().GetWidth();
|
2016-10-07 09:39:32 +03:00
|
|
|
|
if (maybeWidth && *maybeWidth > 0) {
|
|
|
|
|
videoInfo->mImage.width = *maybeWidth;
|
|
|
|
|
}
|
2017-01-18 03:59:03 +03:00
|
|
|
|
Maybe<int32_t> maybeHeight = aContainerType.ExtendedType().GetHeight();
|
2016-10-07 09:39:32 +03:00
|
|
|
|
if (maybeHeight && *maybeHeight > 0) {
|
|
|
|
|
videoInfo->mImage.height = *maybeHeight;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return trackInfo;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-04 05:49:21 +04:00
|
|
|
|
} // end namespace mozilla
|