blob: ed780b947c08575a9a5d951f1cbd0109ab6cb357 (
plain)
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
|
/* -*- 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 "EncoderConfig.h"
#include "MP4Decoder.h"
#include "VPXDecoder.h"
namespace mozilla {
CodecType EncoderConfig::CodecTypeForMime(const nsACString& aMimeType) {
if (MP4Decoder::IsH264(aMimeType)) {
return CodecType::H264;
}
if (VPXDecoder::IsVPX(aMimeType, VPXDecoder::VP8)) {
return CodecType::VP8;
}
if (VPXDecoder::IsVPX(aMimeType, VPXDecoder::VP9)) {
return CodecType::VP9;
}
MOZ_ASSERT_UNREACHABLE("Unsupported Mimetype");
return CodecType::Unknown;
}
} // namespace mozilla
|