blob: 32272c14260c234eaab36a2b8d981c44e759b1ed (
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
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
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/base/media.h"
#include "base/allocator/buildflags.h"
#include "base/command_line.h"
#include "base/macros.h"
#include "base/metrics/field_trial.h"
#include "base/trace_event/trace_event.h"
#include "media/base/media_switches.h"
#include "media/media_buildflags.h"
#include "third_party/libyuv/include/libyuv.h"
#if defined(OS_ANDROID)
#include "base/android/build_info.h"
#endif
#if BUILDFLAG(ENABLE_FFMPEG)
#include "third_party/ffmpeg/ffmpeg_features.h" // nogncheck
extern "C" {
#include <libavutil/cpu.h>
#include <libavutil/log.h>
#include <libavutil/mem.h>
}
#endif
namespace media {
// Media must only be initialized once; use a thread-safe static to do this.
class MediaInitializer {
public:
MediaInitializer() {
// Initializing the CPU flags may query /proc for details on the current CPU
// for NEON, VFP, etc optimizations. If in a sandboxed process, they should
// have been forced (see InitializeMediaLibraryInSandbox).
libyuv::InitCpuFlags();
#if BUILDFLAG(ENABLE_FFMPEG)
av_get_cpu_flags();
// Disable logging as it interferes with layout tests.
av_log_set_level(AV_LOG_QUIET);
#if BUILDFLAG(USE_ALLOCATOR_SHIM)
// Remove allocation limit from ffmpeg, so calls go down to shim layer.
av_max_alloc(0);
#endif // BUILDFLAG(USE_ALLOCATOR_SHIM)
#endif // BUILDFLAG(ENABLE_FFMPEG)
}
#if defined(OS_ANDROID)
void enable_platform_decoder_support() {
has_platform_decoder_support_ = true;
}
bool has_platform_decoder_support() const {
return has_platform_decoder_support_;
}
#endif // defined(OS_ANDROID)
private:
~MediaInitializer() = delete;
#if defined(OS_ANDROID)
bool has_platform_decoder_support_ = false;
#endif // defined(OS_ANDROID)
DISALLOW_COPY_AND_ASSIGN(MediaInitializer);
};
static MediaInitializer* GetMediaInstance() {
static MediaInitializer* instance = new MediaInitializer();
return instance;
}
void InitializeMediaLibrary() {
GetMediaInstance();
}
void InitializeMediaLibraryInSandbox(int64_t libyuv_cpu_flags,
int64_t libavutil_cpu_flags) {
// Force the CPU flags so when they don't require disk access when queried
// from MediaInitializer().
libyuv::SetCpuFlags(libyuv_cpu_flags);
#if BUILDFLAG(ENABLE_FFMPEG)
av_force_cpu_flags(libavutil_cpu_flags);
#endif
GetMediaInstance();
}
#if defined(OS_ANDROID)
void EnablePlatformDecoderSupport() {
GetMediaInstance()->enable_platform_decoder_support();
}
bool HasPlatformDecoderSupport() {
return GetMediaInstance()->has_platform_decoder_support();
}
bool PlatformHasOpusSupport() {
return base::android::BuildInfo::GetInstance()->sdk_int() >=
base::android::SDK_VERSION_LOLLIPOP;
}
#endif // defined(OS_ANDROID)
} // namespace media
|