aboutsummaryrefslogtreecommitdiff
path: root/devel/electron13/files/patch-media_formats_common_offset__byte__queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'devel/electron13/files/patch-media_formats_common_offset__byte__queue.h')
-rw-r--r--devel/electron13/files/patch-media_formats_common_offset__byte__queue.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/devel/electron13/files/patch-media_formats_common_offset__byte__queue.h b/devel/electron13/files/patch-media_formats_common_offset__byte__queue.h
deleted file mode 100644
index 75e51f6dfef0..000000000000
--- a/devel/electron13/files/patch-media_formats_common_offset__byte__queue.h
+++ /dev/null
@@ -1,22 +0,0 @@
---- media/formats/common/offset_byte_queue.h.orig 2021-01-07 00:36:37 UTC
-+++ media/formats/common/offset_byte_queue.h
-@@ -36,15 +36,15 @@ class MEDIA_EXPORT OffsetByteQueue {
- // a null |buf| and a |size| of zero.
- void PeekAt(int64_t offset, const uint8_t** buf, int* size);
-
-- // Marks the bytes up to (but not including) |max_offset| as ready for
-+ // Marks the bytes up to (but not including) |_max_offset| as ready for
- // deletion. This is relatively inexpensive, but will not necessarily reduce
- // the resident buffer size right away (or ever).
- //
- // Returns true if the full range of bytes were successfully trimmed,
-- // including the case where |max_offset| is less than the current head.
-- // Returns false if |max_offset| > tail() (although all bytes currently
-+ // including the case where |_max_offset| is less than the current head.
-+ // Returns false if |_max_offset| > tail() (although all bytes currently
- // buffered are still cleared).
-- bool Trim(int64_t max_offset);
-+ bool Trim(int64_t _max_offset);
-
- // The head and tail positions, in terms of the file's absolute offsets.
- // tail() is an exclusive bound.