Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(985)

Unified Diff: media/base/stream_parser_buffer.h

Issue 240123004: Simplify AudioSplicer logic which slots buffers before or after a splice point. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Docs. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/base/stream_parser_buffer.h
diff --git a/media/base/stream_parser_buffer.h b/media/base/stream_parser_buffer.h
index 0dbb1b32cdf8554f0c5eccb365d7a971d6553645..9c077c1235d7ce2132f6ba9734fb95d10ecc5407 100644
--- a/media/base/stream_parser_buffer.h
+++ b/media/base/stream_parser_buffer.h
@@ -54,8 +54,9 @@ class MEDIA_EXPORT StreamParserBuffer : public DecoderBuffer {
// have any EOS buffers and must not have any nested splice buffers.
//
// |pre_splice_buffers| will be deep copied and each copy's splice_timestamp()
- // will be set to this buffer's splice_timestamp(). A copy of |this| will be
- // added to the end of |splice_buffers_|.
+ // will be set to this buffer's splice_timestamp(). A copy of |this|, with a
+ // splice_timestamp() of kNoTimestamp(), will be added to the end of
+ // |splice_buffers_|.
//
// See the Audio Splice Frame Algorithm in the MSE specification for details.
typedef StreamParser::BufferQueue BufferQueue;

Powered by Google App Engine
This is Rietveld 408576698