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

Unified Diff: media/formats/common/stream_parser_test_base.cc

Issue 712593003: Move key frame flag from StreamParserBuffer to DecoderBuffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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/formats/common/stream_parser_test_base.cc
diff --git a/media/formats/common/stream_parser_test_base.cc b/media/formats/common/stream_parser_test_base.cc
index 1d5f4b9c0c21260b38a47bf13685492fe3f45096..ad4ac1896092244a5ef77c012cd32a3316c9b72e 100644
--- a/media/formats/common/stream_parser_test_base.cc
+++ b/media/formats/common/stream_parser_test_base.cc
@@ -19,7 +19,7 @@ static std::string BufferQueueToString(
itr != buffers.end();
++itr) {
ss << " " << (*itr)->timestamp().InMilliseconds();
- if ((*itr)->IsKeyframe())
+ if ((*itr)->is_keyframe())
ss << "K";
}
ss << " }";

Powered by Google App Engine
This is Rietveld 408576698