diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /third_party/libwebrtc/moz-patch-stack/0037.patch | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/libwebrtc/moz-patch-stack/0037.patch')
-rw-r--r-- | third_party/libwebrtc/moz-patch-stack/0037.patch | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/third_party/libwebrtc/moz-patch-stack/0037.patch b/third_party/libwebrtc/moz-patch-stack/0037.patch new file mode 100644 index 0000000000..4b14593e98 --- /dev/null +++ b/third_party/libwebrtc/moz-patch-stack/0037.patch @@ -0,0 +1,52 @@ +From: Dan Minor <dminor@mozilla.com> +Date: Wed, 18 Nov 2020 15:19:00 -0500 +Subject: Bug 1654112 - Fully qualify kIvfHeaderSize. r=ng + +Differential Revision: https://phabricator.services.mozilla.com/D130087 +Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/9452e226943fea4b0f6ff67e0ee85587d9c23a44 +--- + modules/video_coding/utility/ivf_file_writer.cc | 10 +++++----- + 1 file changed, 5 insertions(+), 5 deletions(-) + +diff --git a/modules/video_coding/utility/ivf_file_writer.cc b/modules/video_coding/utility/ivf_file_writer.cc +index 668390a78c..5b27ef3ef7 100644 +--- a/modules/video_coding/utility/ivf_file_writer.cc ++++ b/modules/video_coding/utility/ivf_file_writer.cc +@@ -39,7 +39,7 @@ IvfFileWriter::IvfFileWriter(FileWrapper file, size_t byte_limit) + last_timestamp_(-1), + using_capture_timestamps_(false), + file_(std::move(file)) { +- RTC_DCHECK(byte_limit == 0 || kIvfHeaderSize <= byte_limit) ++ RTC_DCHECK(byte_limit == 0 || webrtc::kIvfHeaderSize <= byte_limit) + << "The byte_limit is too low, not even the header will fit."; + } + +@@ -59,7 +59,7 @@ bool IvfFileWriter::WriteHeader() { + return false; + } + +- uint8_t ivf_header[kIvfHeaderSize] = {0}; ++ uint8_t ivf_header[webrtc::kIvfHeaderSize] = {0}; + ivf_header[0] = 'D'; + ivf_header[1] = 'K'; + ivf_header[2] = 'I'; +@@ -113,13 +113,13 @@ bool IvfFileWriter::WriteHeader() { + static_cast<uint32_t>(num_frames_)); + ByteWriter<uint32_t>::WriteLittleEndian(&ivf_header[28], 0); // Reserved. + +- if (!file_.Write(ivf_header, kIvfHeaderSize)) { ++ if (!file_.Write(ivf_header, webrtc::kIvfHeaderSize)) { + RTC_LOG(LS_ERROR) << "Unable to write IVF header for ivf output file."; + return false; + } + +- if (bytes_written_ < kIvfHeaderSize) { +- bytes_written_ = kIvfHeaderSize; ++ if (bytes_written_ < webrtc::kIvfHeaderSize) { ++ bytes_written_ = webrtc::kIvfHeaderSize; + } + + return true; +-- +2.34.1 + |