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

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: Fix nits 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
« no previous file with comments | « media/filters/video_frame_stream_unittest.cc ('k') | media/formats/mp2t/es_adapter_video.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..41892d1e2ce1a261fa5fdd471dd98ef3954b97a1 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_key_frame())
ss << "K";
}
ss << " }";
« no previous file with comments | « media/filters/video_frame_stream_unittest.cc ('k') | media/formats/mp2t/es_adapter_video.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698