(dev release 2025-01-24) - Chromium 133.0.6943.27 (beta released 2025-01-23) - use llvm19 also on 15.6/SLE-15-SP6 chromium-119-assert.patch (code dropped upstream) - modified patches (rest of code is gone upstream, see commit - update context in chromium-102-regex_pattern-array.patch chromium-125-ffmpeg-5.x-reordered_opaque.patch third_party/wasm_tts_engine (needed by tools/grit) v8/third_party/siphash (moved inside of v8) v8/third_party/utf8-decoder (moved inside of v8) v8/third_party/valgrind (moved inside of v8) - drop from keeplibs (gone in source): third_party/jstemplate does not exist third_party/qcms does not exist - drop buildreq for libevent and libevent from system libs as the lib was dropped upstream - added patches (as revert for llvm17 in sp6): chromium-add-atomicops.patch (upstream commit d29b01737a841b5627249d50f007dcdc7e26462b) (upstream commit 780efe38034cfdc1bdf4c74e82e7ca7c14e8ac5b does not seem to be in 133 yet) chromium-133-string_view.patch (one more place to use string_view, also only llvm17) - update INSTALL.sh to generate appdata.xml from template OBS-URL: https://build.opensuse.org/package/show/network:chromium/chromium-dev?expand=0&rev=27
13 lines
645 B
Diff
13 lines
645 B
Diff
--- chromium-133.0.6943.16/media/filters/ffmpeg_glue.cc 2025/01/20 15:06:56 1.1
|
|
+++ chromium-133.0.6943.16/media/filters/ffmpeg_glue.cc 2025/01/20 15:07:32
|
|
@@ -111,7 +111,8 @@
|
|
|
|
// We don't allow H.264 parsing during demuxing since we have our own parser
|
|
// and the ffmpeg one increases memory usage unnecessarily.
|
|
- format_context_->flags |= AVFMT_FLAG_NOH264PARSE;
|
|
+ // TODO(crbug.com/355485812): Re-enable this flag.
|
|
+ // format_context_->flags |= AVFMT_FLAG_NOH264PARSE;
|
|
|
|
// Ensures format parsing errors will bail out. From an audit on 11/2017, all
|
|
// instances were real failures. Solves bugs like http://crbug.com/710791.
|