| OLD | NEW |
| 1 Name: ffmpeg |
| 2 URL: http://ffmpeg.org/ |
| 3 License File: source/patched-ffmpeg-mt/LICENSE |
| 4 |
| 1 This file describes how to produce the FFmpeg include directory, and how to | 5 This file describes how to produce the FFmpeg include directory, and how to |
| 2 create the ffmpeg.gyp file and related configurations. | 6 create the ffmpeg.gyp file and related configurations. |
| 3 | 7 |
| 4 -- FFmpeg headers in the 'include' directory. | 8 -- FFmpeg headers in the 'include' directory. |
| 5 | 9 |
| 6 The include directory contains FFmpeg's public header files from the output of | 10 The include directory contains FFmpeg's public header files from the output of |
| 7 a "make install" command. The header files are from Chromium's copy of FFmpeg. | 11 a "make install" command. The header files are from Chromium's copy of FFmpeg. |
| 8 | 12 |
| 9 Steps to reproduce: | 13 Steps to reproduce: |
| 10 1) If on Windows, refer to our MinGW/MSYS environment setup: | 14 1) If on Windows, refer to our MinGW/MSYS environment setup: |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 grep -v ' -shared ' | | 201 grep -v ' -shared ' | |
| 198 sed -e "s|.* -o .* \(.*\)$|'source/patched-ffmpeg-mt/\1',|" | | 202 sed -e "s|.* -o .* \(.*\)$|'source/patched-ffmpeg-mt/\1',|" | |
| 199 sort | 203 sort |
| 200 | 204 |
| 201 11) Attempt to build. :) | 205 11) Attempt to build. :) |
| 202 | 206 |
| 203 *12) Update the the sources! clause to exclude files that should only be built | 207 *12) Update the the sources! clause to exclude files that should only be built |
| 204 for Chromium. For this, you basically need to do the steps above once | 208 for Chromium. For this, you basically need to do the steps above once |
| 205 with the configure options for Chrome, then once with the options for | 209 with the configure options for Chrome, then once with the options for |
| 206 Chromium and diff the list of .c and .asm source files. | 210 Chromium and diff the list of .c and .asm source files. |
| OLD | NEW |