• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..16-Feb-2021-

build/H16-Feb-2021-150126

common/H16-Feb-2021-2,4561,742

m2ts/H16-Feb-2021-1,8971,213

mkvmuxer/H16-Feb-2021-7,1814,839

mkvparser/H16-Feb-2021-9,3896,446

testing/H16-Feb-2021-2,2401,740

webm_parser/H16-Feb-2021-21,79913,035

webvtt/H16-Feb-2021-966520

.clang-formatH A D16-Feb-20212.8 KiB9896

.gitattributesH A D16-Feb-2021156 76

.gitignoreH A D16-Feb-2021324 3635

Android.mkH A D16-Feb-2021584 1815

Makefile.unixH A D16-Feb-20211.7 KiB5846

README.libwebmH A D16-Feb-20214.8 KiB14492

codereview.settingsH A D16-Feb-2021170 54

dumpvtt.ccH A D16-Feb-20212.5 KiB9267

hdr_util.hppH A D16-Feb-2021681 164

iosbuild.shH A D16-Feb-20215.6 KiB208153

mkvmuxer.hppH A D16-Feb-2021683 164

mkvmuxer_sample.ccH A D16-Feb-202129.7 KiB803658

mkvmuxertypes.hppH A D16-Feb-2021703 164

mkvmuxerutil.hppH A D16-Feb-2021772 196

mkvparser.hppH A D16-Feb-2021688 164

mkvparser_sample.ccH A D16-Feb-202115.4 KiB460358

mkvreader.hppH A D16-Feb-2021688 164

mkvwriter.hppH A D16-Feb-2021687 164

sample_muxer_metadata.ccH A D16-Feb-20218.9 KiB391272

sample_muxer_metadata.hH A D16-Feb-20214.4 KiB13861

vttdemux.ccH A D16-Feb-202129.3 KiB1,005567

vttreader.hH A D16-Feb-2021679 164

webm_info.ccH A D16-Feb-202149.4 KiB1,3271,130

webmids.hppH A D16-Feb-2021990 247

webvttparser.hH A D16-Feb-2021691 164

README.libwebm

1Building Libwebm
2
3To build libwebm you must first create project files. To do this run cmake
4and pass it the path to your libwebm repo.
5
6Makefile.unix can be used as a fallback on systems that cmake does not
7support.
8
9
10CMake Basics
11
12To generate project/make files for the default toolchain on your system simply
13run cmake with the path to the libwebm repo:
14
15$ cmake path/to/libwebm
16
17On Windows the above command will produce Visual Studio project files for the
18newest Visual Studio detected on the system. On Mac OS X and Linux systems, the
19above command will produce a makefile.
20
21To control what types of projects are generated the -G parameter is added to
22the cmake command line. This argument must be followed by the name of a
23generator. Running cmake with the --help argument will list the available
24generators for your system.
25
26On Mac OS X you would run the following command to generate Xcode projects:
27
28$ cmake path/to/libwebm -G Xcode
29
30On a Windows box you would run the following command to generate Visual Studio
312013 projects:
32
33$ cmake path/to/libwebm -G "Visual Studio 12"
34
35To generate 64-bit Windows Visual Studio 2013 projects:
36
37$ cmake path/to/libwebm "Visual Studio 12 Win64"
38
39
40CMake Makefiles: Debugging and Optimization
41
42Unlike Visual Studio and Xcode projects, the build configuration for make builds
43is controlled when you run cmake. The following examples demonstrate various
44build configurations.
45
46Omitting the build type produces makefiles that use build flags containing
47neither optimization nor debug flags:
48$ cmake path/to/libwebm
49
50A makefile using release (optimized) flags is produced like this:
51$ cmake path/to/libwebm -DCMAKE_BUILD_TYPE=release
52
53A release build with debug info can be produced as well:
54$ cmake path/to/libwebm -DCMAKE_BUILD_TYPE=relwithdebinfo
55
56And your standard debug build will be produced using:
57$ cmake path/to/libwebm -DCMAKE_BUILD_TYPE=debug
58
59
60Tests
61
62To enable libwebm tests add -DENABLE_TESTS=ON CMake generation command line. For
63example:
64
65$ cmake path/to/libwebm -G Xcode -DENABLE_TESTS=ON
66
67Libwebm tests depend on googletest. By default googletest is expected to be a
68sibling directory of the Libwebm repository. To change that, update your CMake
69command to be similar to the following:
70
71$ cmake path/to/libwebm -G Xcode -DENABLE_TESTS=ON \
72  -DGTEST_SRC_DIR=/path/to/googletest
73
74The tests rely upon the LIBWEBM_TEST_DATA_PATH environment variable to locate
75test input. The following example demonstrates running the muxer tests from the
76build directory:
77
78$ LIBWEBM_TEST_DATA_PATH=path/to/libwebm/testing/testdata ./mkvmuxer_tests
79
80Note: Libwebm Googletest integration was built with googletest from
81      https://github.com/google/googletest.git at git revision
82      ddb8012eb48bc203aa93dcc2b22c1db516302b29.
83
84
85CMake Include-what-you-use integration
86
87Include-what-you-use is an analysis tool that helps ensure libwebm includes the
88C/C++ header files actually in use. To enable the integration support
89ENABLE_IWYU must be turned on at cmake run time:
90
91$ cmake path/to/libwebm -G "Unix Makefiles" -DENABLE_IWYU=ON
92
93This adds the iwyu target to the build. To run include-what-you-use:
94
95$ make iwyu
96
97The following requirements must be met for ENABLE_IWYU to enable the iwyu
98target:
99
1001. include-what-you-use and iwyu_tool.py must be in your PATH.
1012. A python interpreter must be on the system and available to CMake.
102
103The values of the following variables are used to determine if the requirements
104have been met. Values to the right of the equals sign are what a successful run
105might look like:
106  iwyu_path=/path/to/iwyu_tool.py
107  iwyu_tool_path=/path/to/include-what-you-use
108  PYTHONINTERP_FOUND=TRUE
109
110An empty PYTHONINTERP_FOUND, or iwyu_path/iwyu_tool_path suffixed with NOTFOUND
111are failures.
112
113For Include-what-you-use setup instructions, see:
114https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/InstructionsForUsers.md
115
116If, when building the iwyu target, compile errors reporting failures loading
117standard include files occur, one solution can be found here:
118https://github.com/include-what-you-use/include-what-you-use/issues/100
119
120
121CMake cross compile
122To cross compile libwebm for Windows using mingw-w64 run cmake with the
123following arguments:
124
125$ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/libwebm/build/mingw-w64_toolchain.cmake \
126  path/to/libwebm
127
128Note1: As of this writing googletest will not build via mingw-w64 without
129disabling pthreads.
130googletest hash: d225acc90bc3a8c420a9bcd1f033033c1ccd7fe0
131
132To build with tests when using mingw-w64 use the following arguments when
133running CMake:
134
135$ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/libwebm/build/mingw-w64_toolchain.cmake \
136  -DENABLE_TESTS=ON -Dgtest_disable_pthreads=ON path/to/libwebm
137
138Note2: i686-w64-mingw32 is the default compiler. This can be controlled using
139the MINGW_PREFIX variable:
140
141$ cmake -DCMAKE_TOOLCHAIN_FILE=path/to/libwebm/build/mingw-w64_toolchain.cmake \
142  -DMINGW_PREFIX=x86_64-w64-mingw32 path/to/libwebm
143
144