Граф коммитов

15 Коммитов

Автор SHA1 Сообщение Дата
Gerald Squelart afc4e55065 Bug 1329568 - Store original media-content string - r=jya
Some code (mostly logging) needs to know the original full MIME string, which
we would normally not need to keep in MediaExtendedMIMEType.

MozReview-Commit-ID: Jcd290ScHAb

--HG--
extra : rebase_source : 1165bc3425ed34a93564335a10ea3c6257da6f19
2016-12-28 18:56:22 +11:00
Gerald Squelart dd8e7f0b39 Bug 1329568 - Media...Type::SizeOf... methods - r=jya,njn
When replacing strings with MediaContentType objects, some classes will want to
know about their size.

MozReview-Commit-ID: LNdaaUdJac3

--HG--
extra : rebase_source : 70bfbfa55bc6f2c7a8aa026797103cd77615df08
2016-12-22 11:54:56 +11:00
Gerald Squelart 062283957f Bug 1329568 - MediaCodecs - r=jya
MediaCodecs factors out the codecs string from MediaExtendedMIMEType.

It also provides utility methods to go through a list of codecs, and test the
presence of specific codecs.

Note that there is no real way (yet?) to validate the given codecs strings, we
just assume that it's a comma-separated list of codecs. Further work can be
done later on if useful.

MozReview-Commit-ID: 5n2nWmaNT2O

--HG--
extra : rebase_source : 44ca49aa3d2a795171ebff75c91bb228196bc429
2016-12-28 10:48:27 +11:00
Gerald Squelart 29896bdd35 Bug 1329568 - MediaMIMEType 'audio/' and 'video/' checks - r=jya
A lot of code wants to check if the type starts with 'audio/' or 'video/',
MediaMIMEType::IsAudio() and IsVideo() will help with that -- and could later
be optimized if needed.

Note that types starting with 'application/' will still need manual testing,
but they are rare anyway.

MozReview-Commit-ID: UBcxS69Hcb

--HG--
extra : rebase_source : 24bd67f6ec18a2a6c7d33b065ac1036aa51de2ae
2016-12-17 17:43:02 +11:00
Gerald Squelart 633052bba8 Bug 1329568 - Restrict MediaMIMEType to IsMediaMIMEType-checked strings - r=jya
Use IsMediaMIMEType to refuse MIME types that cannot possibly be media-related.

MozReview-Commit-ID: JXhf1biL4L0

--HG--
extra : rebase_source : a33e7be7bcc16685205f767d671a7812ee843364
2017-01-03 22:07:11 +11:00
Gerald Squelart ab3c0bec0e Bug 1329568 - MediaMIMEType - r=jya
MediaMIMEType factors out the main MIME "type/subtype" string from
MediaExtendedMIMEType, as it is often useful to deal with just that part.
Like MediaContentType and MediaExtendedMIMEType, MediaMIMEType is always valid
once constructed.

MozReview-Commit-ID: 5Urlk6OLo5q

--HG--
extra : rebase_source : aef60fde09b13befa1311c6cd712eac19c438021
2016-12-01 16:57:31 +11:00
Gerald Squelart 14cc7d114d Bug 1329568 - MediaExtendedMIMEType - r=jya
This patch factors out all data handling of MIME strings from MediaContentType
to MediaExtendedMIMEType.

MediaExtendedMIMEType is pretty much a copy of the old MediaContentType, as the
functionality was fine (but will be modified in upcoming patches).
MediaContentType then just delegates the work to its embedded
MediaExtendedMIMEType field.
The main difference is that the default constructor and Populate() method have
been replaced with a single constructor that takes all the arguments at once.

MozReview-Commit-ID: GBAgPDT2DUW

--HG--
rename : dom/media/MediaContentType.cpp => dom/media/MediaMIMETypes.cpp
rename : dom/media/MediaContentType.h => dom/media/MediaMIMETypes.h
extra : rebase_source : 1c925d8e049d9d349ec4c3dd1a079f570b809970
2016-12-01 13:05:45 +11:00
Wes Kocher 48f75e3c03 Backed out 13 changesets (bug 1329568) for wpt-11 failures in mediasource-addsourcebuffer.html a=backout CLOSED TREE
Backed out changeset 8f37ee96bd78 (bug 1329568)
Backed out changeset 706da9f85272 (bug 1329568)
Backed out changeset c316c8d24d32 (bug 1329568)
Backed out changeset 90a091e65db3 (bug 1329568)
Backed out changeset da855d6a78bb (bug 1329568)
Backed out changeset 3a49367220e3 (bug 1329568)
Backed out changeset 453851b40e3e (bug 1329568)
Backed out changeset 662529436cc4 (bug 1329568)
Backed out changeset 7c62078beb88 (bug 1329568)
Backed out changeset 99758b5f7918 (bug 1329568)
Backed out changeset 2ce9dcf0c274 (bug 1329568)
Backed out changeset 644f206d06d6 (bug 1329568)
Backed out changeset e1ed12f057c8 (bug 1329568)

MozReview-Commit-ID: FhJlySehxHi
2017-01-12 15:10:52 -08:00
Gerald Squelart 8d36cf82dd Bug 1329568 - Store original media-content string - r=jya
Some code (mostly logging) needs to know the original full MIME string, which
we would normally not need to keep in MediaExtendedMIMEType.

MozReview-Commit-ID: Jcd290ScHAb

--HG--
extra : rebase_source : d0c62f39a042ef256f2a0d6aaee162e7a58c4a9e
2016-12-28 18:56:22 +11:00
Gerald Squelart 8f52cbdabb Bug 1329568 - Media...Type::SizeOf... methods - r=jya,njn
When replacing strings with MediaContentType objects, some classes will want to
know about their size.

MozReview-Commit-ID: LNdaaUdJac3

--HG--
extra : rebase_source : 334bdca4a9b7a5db455bb731c495fa7a96b5b03c
2016-12-22 11:54:56 +11:00
Gerald Squelart 3c3afeffd5 Bug 1329568 - MediaCodecs - r=jya
MediaCodecs factors out the codecs string from MediaExtendedMIMEType.

It also provides utility methods to go through a list of codecs, and test the
presence of specific codecs.

Note that there is no real way (yet?) to validate the given codecs strings, we
just assume that it's a comma-separated list of codecs. Further work can be
done later on if useful.

MozReview-Commit-ID: 5n2nWmaNT2O

--HG--
extra : rebase_source : 721db464b9544959490bcaae7bd7537ffbac5baa
2016-12-28 10:48:27 +11:00
Gerald Squelart 0d8bcb0ce3 Bug 1329568 - MediaMIMEType 'audio/' and 'video/' checks - r=jya
A lot of code wants to check if the type starts with 'audio/' or 'video/',
MediaMIMEType::IsAudio() and IsVideo() will help with that -- and could later
be optimized if needed.

Note that types starting with 'application/' will still need manual testing,
but they are rare anyway.

MozReview-Commit-ID: UBcxS69Hcb

--HG--
extra : rebase_source : 0d52b0deb90ddcc037f2037b68baaf0ae34f45db
2016-12-17 17:43:02 +11:00
Gerald Squelart 814db309fc Bug 1329568 - Restrict MediaMIMEType to IsMediaMIMEType-checked strings - r=jya
Use IsMediaMIMEType to refuse MIME types that cannot possibly be media-related.

MozReview-Commit-ID: JXhf1biL4L0

--HG--
extra : rebase_source : 130847e58e0a1b2cb510d7c62b6dea7180bf180a
2017-01-03 22:07:11 +11:00
Gerald Squelart fe26cb66da Bug 1329568 - MediaMIMEType - r=jya
MediaMIMEType factors out the main MIME "type/subtype" string from
MediaExtendedMIMEType, as it is often useful to deal with just that part.
Like MediaContentType and MediaExtendedMIMEType, MediaMIMEType is always valid
once constructed.

MozReview-Commit-ID: 5Urlk6OLo5q

--HG--
extra : rebase_source : c46b480b9fc63eab9170b052c7f9ea9b7bbd048e
2016-12-01 16:57:31 +11:00
Gerald Squelart d6f0cf3f9c Bug 1329568 - MediaExtendedMIMEType - r=jya
This patch factors out all data handling of MIME strings from MediaContentType
to MediaExtendedMIMEType.

MediaExtendedMIMEType is pretty much a copy of the old MediaContentType, as the
functionality was fine (but will be modified in upcoming patches).
MediaContentType then just delegates the work to its embedded
MediaExtendedMIMEType field.
The main difference is that the default constructor and Populate() method have
been replaced with a single constructor that takes all the arguments at once.

MozReview-Commit-ID: GBAgPDT2DUW

--HG--
rename : dom/media/MediaContentType.cpp => dom/media/MediaMIMETypes.cpp
rename : dom/media/MediaContentType.h => dom/media/MediaMIMETypes.h
extra : rebase_source : cefaeeb2a81b60c575e350cc8399af038a021dc2
2016-12-01 13:05:45 +11:00