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
|
/* 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 "MFMediaEngineUtils.h"
#include "WMFUtils.h"
#include "mozilla/UniquePtr.h"
namespace mozilla {
#define ENUM_TO_STR(enumVal) \
case enumVal: \
return #enumVal
#define ENUM_TO_STR2(guid, enumVal) \
if (guid == enumVal) { \
return #enumVal; \
}
const char* MediaEventTypeToStr(MediaEventType aType) {
switch (aType) {
ENUM_TO_STR(MESourceUnknown);
ENUM_TO_STR(MESourceStarted);
ENUM_TO_STR(MEStreamStarted);
ENUM_TO_STR(MESourceSeeked);
ENUM_TO_STR(MEStreamSeeked);
ENUM_TO_STR(MENewStream);
ENUM_TO_STR(MEUpdatedStream);
ENUM_TO_STR(MESourceStopped);
ENUM_TO_STR(MEStreamStopped);
ENUM_TO_STR(MESourcePaused);
ENUM_TO_STR(MEStreamPaused);
ENUM_TO_STR(MEEndOfPresentation);
ENUM_TO_STR(MEEndOfStream);
ENUM_TO_STR(MEMediaSample);
ENUM_TO_STR(MEStreamTick);
ENUM_TO_STR(MEStreamThinMode);
ENUM_TO_STR(MEStreamFormatChanged);
ENUM_TO_STR(MESourceRateChanged);
ENUM_TO_STR(MEEndOfPresentationSegment);
ENUM_TO_STR(MESourceCharacteristicsChanged);
ENUM_TO_STR(MESourceRateChangeRequested);
ENUM_TO_STR(MESourceMetadataChanged);
ENUM_TO_STR(MESequencerSourceTopologyUpdated);
default:
return "Unknown MediaEventType";
}
}
const char* MediaEngineEventToStr(MF_MEDIA_ENGINE_EVENT aEvent) {
switch (aEvent) {
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_LOADSTART);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_PROGRESS);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_SUSPEND);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_ABORT);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_ERROR);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_EMPTIED);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_STALLED);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_PLAY);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_PAUSE);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_LOADEDMETADATA);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_LOADEDDATA);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_WAITING);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_PLAYING);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_CANPLAY);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_CANPLAYTHROUGH);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_SEEKING);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_SEEKED);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_TIMEUPDATE);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_ENDED);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_RATECHANGE);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_DURATIONCHANGE);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_VOLUMECHANGE);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_FORMATCHANGE);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_PURGEQUEUEDEVENTS);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_TIMELINE_MARKER);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_BALANCECHANGE);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_DOWNLOADCOMPLETE);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_BUFFERINGSTARTED);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_BUFFERINGENDED);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_FRAMESTEPCOMPLETED);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_NOTIFYSTABLESTATE);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_FIRSTFRAMEREADY);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_TRACKSCHANGE);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_OPMINFO);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_RESOURCELOST);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_DELAYLOADEVENT_CHANGED);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_STREAMRENDERINGERROR);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_SUPPORTEDRATES_CHANGED);
ENUM_TO_STR(MF_MEDIA_ENGINE_EVENT_AUDIOENDPOINTCHANGE);
default:
return "Unknown MF_MEDIA_ENGINE_EVENT";
}
}
const char* MFMediaEngineErrorToStr(MFMediaEngineError aError) {
switch (aError) {
ENUM_TO_STR(MF_MEDIA_ENGINE_ERR_NOERROR);
ENUM_TO_STR(MF_MEDIA_ENGINE_ERR_ABORTED);
ENUM_TO_STR(MF_MEDIA_ENGINE_ERR_NETWORK);
ENUM_TO_STR(MF_MEDIA_ENGINE_ERR_DECODE);
ENUM_TO_STR(MF_MEDIA_ENGINE_ERR_SRC_NOT_SUPPORTED);
ENUM_TO_STR(MF_MEDIA_ENGINE_ERR_ENCRYPTED);
default:
return "Unknown MFMediaEngineError";
}
}
const char* GUIDToStr(GUID aGUID) {
ENUM_TO_STR2(aGUID, MFAudioFormat_MP3)
ENUM_TO_STR2(aGUID, MFAudioFormat_AAC)
ENUM_TO_STR2(aGUID, MFAudioFormat_Vorbis)
ENUM_TO_STR2(aGUID, MFAudioFormat_Opus)
ENUM_TO_STR2(aGUID, MFVideoFormat_H264)
ENUM_TO_STR2(aGUID, MFVideoFormat_VP80)
ENUM_TO_STR2(aGUID, MFVideoFormat_VP90)
ENUM_TO_STR2(aGUID, MFVideoFormat_AV1)
ENUM_TO_STR2(aGUID, MFVideoFormat_HEVC)
ENUM_TO_STR2(aGUID, MFMediaType_Audio)
return "Unknown GUID";
}
const char* MFVideoRotationFormatToStr(MFVideoRotationFormat aFormat) {
switch (aFormat) {
ENUM_TO_STR(MFVideoRotationFormat_0);
ENUM_TO_STR(MFVideoRotationFormat_90);
ENUM_TO_STR(MFVideoRotationFormat_180);
ENUM_TO_STR(MFVideoRotationFormat_270);
default:
return "Unknown MFVideoRotationFormat";
}
}
const char* MFVideoTransferFunctionToStr(MFVideoTransferFunction aFunc) {
switch (aFunc) {
ENUM_TO_STR(MFVideoTransFunc_Unknown);
ENUM_TO_STR(MFVideoTransFunc_709);
ENUM_TO_STR(MFVideoTransFunc_2020);
ENUM_TO_STR(MFVideoTransFunc_sRGB);
ENUM_TO_STR(MFVideoTransFunc_2084);
default:
return "Unsupported MFVideoTransferFunction";
}
}
const char* MFVideoPrimariesToStr(MFVideoPrimaries aPrimaries) {
switch (aPrimaries) {
ENUM_TO_STR(MFVideoPrimaries_Unknown);
ENUM_TO_STR(MFVideoPrimaries_BT709);
ENUM_TO_STR(MFVideoPrimaries_BT2020);
default:
return "Unsupported MFVideoPrimaries";
}
}
void ByteArrayFromGUID(REFGUID aGuidIn, nsTArray<uint8_t>& aByteArrayOut) {
aByteArrayOut.SetLength(sizeof(GUID));
// GUID is little endian. The byte array in network order is big endian.
GUID* reversedGuid = reinterpret_cast<GUID*>(aByteArrayOut.Elements());
*reversedGuid = aGuidIn;
reversedGuid->Data1 = _byteswap_ulong(aGuidIn.Data1);
reversedGuid->Data2 = _byteswap_ushort(aGuidIn.Data2);
reversedGuid->Data3 = _byteswap_ushort(aGuidIn.Data3);
// Data4 is already a byte array so no need to byte swap.
}
void GUIDFromByteArray(const nsTArray<uint8_t>& aByteArrayIn, GUID& aGuidOut) {
MOZ_ASSERT(aByteArrayIn.Length() == sizeof(GUID));
GUID* reversedGuid =
reinterpret_cast<GUID*>(const_cast<uint8_t*>(aByteArrayIn.Elements()));
aGuidOut = *reversedGuid;
aGuidOut.Data1 = _byteswap_ulong(reversedGuid->Data1);
aGuidOut.Data2 = _byteswap_ushort(reversedGuid->Data2);
aGuidOut.Data3 = _byteswap_ushort(reversedGuid->Data3);
// Data4 is already a byte array so no need to byte swap.
}
BSTR CreateBSTRFromConstChar(const char* aNarrowStr) {
int wideStrSize = MultiByteToWideChar(CP_UTF8, 0, aNarrowStr, -1, nullptr, 0);
if (wideStrSize == 0) {
NS_WARNING("Failed to get wide str size!");
return nullptr;
}
UniquePtr<wchar_t[]> wideStrBuffer(new wchar_t[wideStrSize]);
if (MultiByteToWideChar(CP_UTF8, 0, aNarrowStr, -1, wideStrBuffer.get(),
wideStrSize) == 0) {
NS_WARNING("Failed to covert to wide str!");
return nullptr;
}
BSTR bstr = SysAllocString(wideStrBuffer.get());
return bstr;
}
#undef ENUM_TO_STR
#undef ENUM_TO_STR2
} // namespace mozilla
|