mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 01:08:39 +09:00
Merge remote-tracking branch 'origin/master' into custom
This commit is contained in:
commit
8f3a931753
9 changed files with 61 additions and 15 deletions
|
|
@ -172,7 +172,8 @@ bool
|
|||
MP4Decoder::IsH264(const nsACString& aMimeType)
|
||||
{
|
||||
return aMimeType.EqualsLiteral("video/mp4") ||
|
||||
aMimeType.EqualsLiteral("video/avc");
|
||||
aMimeType.EqualsLiteral("video/avc") ||
|
||||
aMimeType.EqualsLiteral("video/webm; codecs=avc1");
|
||||
}
|
||||
|
||||
/* static */
|
||||
|
|
|
|||
|
|
@ -697,6 +697,9 @@ ContainerParser::CreateForMIMEType(const nsACString& aType)
|
|||
if (aType.LowerCaseEqualsLiteral("video/webm") || aType.LowerCaseEqualsLiteral("audio/webm")) {
|
||||
return new WebMContainerParser(aType);
|
||||
}
|
||||
if (aType.LowerCaseEqualsLiteral("video/x-matroska") || aType.LowerCaseEqualsLiteral("audio/x-matroska")) {
|
||||
return new WebMContainerParser(aType);
|
||||
}
|
||||
|
||||
#ifdef MOZ_FMP4
|
||||
if (aType.LowerCaseEqualsLiteral("video/mp4") || aType.LowerCaseEqualsLiteral("audio/mp4")) {
|
||||
|
|
|
|||
|
|
@ -110,14 +110,16 @@ MediaSource::IsTypeSupported(const nsAString& aType, DecoderDoctorDiagnostics* a
|
|||
}
|
||||
return NS_OK;
|
||||
}
|
||||
if (mimeType.EqualsASCII("video/webm")) {
|
||||
if (mimeType.EqualsASCII("video/webm") ||
|
||||
mimeType.EqualsASCII("video/x-matroska")) {
|
||||
if (!(Preferences::GetBool("media.mediasource.webm.enabled", false) ||
|
||||
IsWebMForced(aDiagnostics))) {
|
||||
return NS_ERROR_DOM_NOT_SUPPORTED_ERR;
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
if (mimeType.EqualsASCII("audio/webm")) {
|
||||
if (mimeType.EqualsASCII("audio/webm") ||
|
||||
mimeType.EqualsASCII("audio/x-matroska")) {
|
||||
if (!(Preferences::GetBool("media.mediasource.webm.enabled", false) ||
|
||||
Preferences::GetBool("media.mediasource.webm.audio.enabled", true))) {
|
||||
return NS_ERROR_DOM_NOT_SUPPORTED_ERR;
|
||||
|
|
|
|||
|
|
@ -814,6 +814,8 @@ TrackBuffersManager::CreateDemuxerforMIMEType()
|
|||
ShutdownDemuxers();
|
||||
|
||||
if (mType.LowerCaseEqualsLiteral("video/webm") ||
|
||||
mType.LowerCaseEqualsLiteral("video/x-matroska") ||
|
||||
mType.LowerCaseEqualsLiteral("audio/x-matroska") ||
|
||||
mType.LowerCaseEqualsLiteral("audio/webm")) {
|
||||
mInputDemuxer = new WebMDemuxer(mCurrentInputBuffer, true /* IsMediaSource*/ );
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -42,7 +42,10 @@ WebMDecoder::CanHandleMediaType(const nsACString& aMIMETypeExcludingCodecs,
|
|||
|
||||
const bool isWebMAudio = aMIMETypeExcludingCodecs.EqualsASCII("audio/webm");
|
||||
const bool isWebMVideo = aMIMETypeExcludingCodecs.EqualsASCII("video/webm");
|
||||
if (!isWebMAudio && !isWebMVideo) {
|
||||
const bool isMatroskaAudio = aMIMETypeExcludingCodecs.EqualsASCII("audio/x-matroska") ;
|
||||
const bool isMatroskaVideo = aMIMETypeExcludingCodecs.EqualsASCII("video/x-matroska") ;
|
||||
|
||||
if (!isWebMAudio && !isWebMVideo && !isMatroskaAudio && !isMatroskaVideo) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -63,7 +66,7 @@ WebMDecoder::CanHandleMediaType(const nsACString& aMIMETypeExcludingCodecs,
|
|||
}
|
||||
// Note: Only accept VP8/VP9 in a video content type, not in an audio
|
||||
// content type.
|
||||
if (isWebMVideo &&
|
||||
if ((isWebMVideo || isMatroskaVideo) &&
|
||||
(codec.EqualsLiteral("vp8") || codec.EqualsLiteral("vp8.0") ||
|
||||
codec.EqualsLiteral("vp9") || codec.EqualsLiteral("vp9.0"))) {
|
||||
|
||||
|
|
@ -74,6 +77,11 @@ WebMDecoder::CanHandleMediaType(const nsACString& aMIMETypeExcludingCodecs,
|
|||
continue;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (IsH264CodecString(codec)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Some unsupported codec.
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -326,6 +326,20 @@ WebMDemuxer::ReadMetadata()
|
|||
case NESTEGG_CODEC_AV1:
|
||||
mInfo.mVideo.mMimeType = "video/webm; codecs=av1";
|
||||
break;
|
||||
case NESTEGG_CODEC_AVC1: {
|
||||
mInfo.mVideo.mMimeType = "video/webm; codecs=avc1";
|
||||
|
||||
unsigned char* data = 0;
|
||||
size_t length = 0;
|
||||
r = nestegg_track_codec_data(context, track, 0, &data, &length);
|
||||
if (r == -1) {
|
||||
return NS_ERROR_FAILURE;
|
||||
}
|
||||
|
||||
mInfo.mVideo.mExtraData = new MediaByteBuffer(length);
|
||||
mInfo.mVideo.mExtraData->AppendElements(data, length);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
NS_WARNING("Unknown WebM video codec");
|
||||
return NS_ERROR_FAILURE;
|
||||
|
|
@ -662,6 +676,9 @@ WebMDemuxer::GetNextPacket(TrackInfo::TrackType aType, MediaRawDataQueue *aSampl
|
|||
isKeyframe = AOMDecoder::IsKeyframe(sample);
|
||||
break;
|
||||
#endif
|
||||
case NESTEGG_CODEC_AVC1:
|
||||
isKeyframe = nestegg_packet_has_keyframe(holder->Packet());
|
||||
break;
|
||||
default:
|
||||
NS_WARNING("Cannot detect keyframes in unknown WebM video codec");
|
||||
return NS_ERROR_FAILURE;
|
||||
|
|
@ -682,7 +699,7 @@ WebMDemuxer::GetNextPacket(TrackInfo::TrackType aType, MediaRawDataQueue *aSampl
|
|||
dimensions = AOMDecoder::GetFrameSize(sample);
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
if (mLastSeenFrameSize.isSome()
|
||||
&& (dimensions != mLastSeenFrameSize.value())) {
|
||||
mInfo.mVideo.mDisplay = dimensions;
|
||||
|
|
@ -749,6 +766,11 @@ WebMDemuxer::GetNextPacket(TrackInfo::TrackType aType, MediaRawDataQueue *aSampl
|
|||
if (aType == TrackInfo::kVideoTrack) {
|
||||
sample->mTrackInfo = mSharedVideoTrackInfo;
|
||||
}
|
||||
|
||||
if (mVideoCodec == NESTEGG_CODEC_AVC1) {
|
||||
sample->mExtraData = mInfo.mVideo.mExtraData;
|
||||
}
|
||||
|
||||
aSamples->Push(sample);
|
||||
}
|
||||
return NS_OK;
|
||||
|
|
|
|||
|
|
@ -161,9 +161,9 @@ public:
|
|||
}
|
||||
|
||||
/**
|
||||
* Return true if we have no properties, otherwise return false.
|
||||
*/
|
||||
bool IsEmpty() const { return mProperties.IsEmpty(); }
|
||||
* Return true if we have no properties, otherwise return false.
|
||||
*/
|
||||
bool IsEmpty() const { return mProperties.IsEmpty(); }
|
||||
|
||||
/**
|
||||
* Set a property value. This requires a linear search through
|
||||
|
|
@ -246,20 +246,22 @@ public:
|
|||
{
|
||||
DeleteInternal(aProperty, aFrame);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
/**
|
||||
* Call @aFunction for each property or until @aFunction returns false.
|
||||
*/
|
||||
template<class F>
|
||||
void ForEach(F aFunction) const
|
||||
{
|
||||
#ifdef DEBUG
|
||||
size_t len = mProperties.Length();
|
||||
size_t len = mProperties.Length();
|
||||
#endif
|
||||
for (const auto& prop : mProperties) {
|
||||
bool shouldContinue = aFunction(prop.mProperty, prop.mValue);
|
||||
MOZ_ASSERT(len == mProperties.Length(),
|
||||
"frame property list was modified by ForEach callback!");
|
||||
#ifdef DEBUG
|
||||
MOZ_ASSERT(len == mProperties.Length(),
|
||||
"frame property list was modified by ForEach callback!");
|
||||
#endif
|
||||
if (!shouldContinue) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ extern "C" {
|
|||
#define NESTEGG_CODEC_VP9 2 /**< Track uses Google On2 VP9 codec. */
|
||||
#define NESTEGG_CODEC_OPUS 3 /**< Track uses Xiph Opus codec. */
|
||||
#define NESTEGG_CODEC_AV1 4 /**< Track uses AOMedia AV1 codec. */
|
||||
#define NESTEGG_CODEC_AVC1 5 /**< Track uses AVC1 'h264' */
|
||||
#define NESTEGG_CODEC_UNKNOWN INT_MAX /**< Track uses unknown codec. */
|
||||
|
||||
#define NESTEGG_VIDEO_MONO 0 /**< Track is mono video. */
|
||||
|
|
|
|||
|
|
@ -157,6 +157,7 @@ enum ebml_type_enum {
|
|||
#define TRACK_ID_AV1 "V_AV1"
|
||||
#define TRACK_ID_VORBIS "A_VORBIS"
|
||||
#define TRACK_ID_OPUS "A_OPUS"
|
||||
#define TRACK_ID_AVC1 "V_MPEG4/ISO/AVC"
|
||||
|
||||
/* Track Encryption */
|
||||
#define CONTENT_ENC_ALGO_AES 5
|
||||
|
|
@ -2401,6 +2402,9 @@ nestegg_track_codec_id(nestegg * ctx, unsigned int track)
|
|||
if (strcmp(codec_id, TRACK_ID_OPUS) == 0)
|
||||
return NESTEGG_CODEC_OPUS;
|
||||
|
||||
if (strcmp(codec_id, TRACK_ID_AVC1) == 0)
|
||||
return NESTEGG_CODEC_AVC1;
|
||||
|
||||
return NESTEGG_CODEC_UNKNOWN;
|
||||
}
|
||||
|
||||
|
|
@ -2459,7 +2463,8 @@ nestegg_track_codec_data(nestegg * ctx, unsigned int track, unsigned int item,
|
|||
return -1;
|
||||
|
||||
if (nestegg_track_codec_id(ctx, track) != NESTEGG_CODEC_VORBIS &&
|
||||
nestegg_track_codec_id(ctx, track) != NESTEGG_CODEC_OPUS)
|
||||
nestegg_track_codec_id(ctx, track) != NESTEGG_CODEC_OPUS &&
|
||||
nestegg_track_codec_id(ctx, track) != NESTEGG_CODEC_AVC1)
|
||||
return -1;
|
||||
|
||||
if (ne_get_binary(entry->codec_private, &codec_private) != 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue