Home | History | Annotate | Download | only in base

Lines Matching full:base

5 #include "media/base/media.h"
7 #include "base/files/file_path.h"
8 #include "base/lazy_instance.h"
9 #include "base/path_service.h"
10 #include "base/synchronization/lock.h"
12 #include "media/base/yuv_convert.h"
18 extern bool InitializeMediaLibraryInternal(const base::FilePath& module_dir);
24 bool Initialize(const base::FilePath& module_dir) {
25 base::AutoLock auto_lock(lock_);
34 base::AutoLock auto_lock(lock_);
39 friend struct base::DefaultLazyInstanceTraits<MediaInitializer>;
52 base::Lock lock_;
59 static base::LazyInstance<MediaInitializer>::Leaky g_media_library =
62 bool InitializeMediaLibrary(const base::FilePath& module_dir) {
67 base::FilePath module_dir;
68 CHECK(PathService::Get(base::DIR_EXE, &module_dir));