1
0
Files
chromium-beta/chromium-129-revert-AVFMT_FLAG_NOH264PARSE.patch
Ruediger Oertel 0b1b848ef9 - modified patches
chromium-129-revert-AVFMT_FLAG_NOH264PARSE.patch
  (rest of code is gone upstream, see commit
   574c1e6678da435efb2ea9dba5dd890c2704b8af)
  third_party/wasm_tts_engine (needed by tools/grit)
  v8/third_party/siphash (moved)

OBS-URL: https://build.opensuse.org/package/show/network:chromium/chromium-beta?expand=0&rev=125
2025-01-20 15:19:37 +00:00

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.