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

Unified Diff: media/mp4/mp4_stream_parser_unittest.cc

Issue 10651006: Add Common Encryption support to BMFF, including subsample decryption. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add wrong subsample size test Created 8 years, 5 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/mp4/mp4_stream_parser_unittest.cc
diff --git a/media/mp4/mp4_stream_parser_unittest.cc b/media/mp4/mp4_stream_parser_unittest.cc
index f5be02af74bac7c168a867564375cf87936a0fb1..5cae84b4d1727ebda653a985308d01ca04083bda 100644
--- a/media/mp4/mp4_stream_parser_unittest.cc
+++ b/media/mp4/mp4_stream_parser_unittest.cc
@@ -37,8 +37,7 @@ class MP4StreamParserTest : public testing::Test {
bool got_configs_;
ddorwin 2012/07/17 01:14:21 s/got/have/ seems better
strobe_ 2012/07/19 02:43:35 Done.
bool AppendData(const uint8* data, size_t length) {
- parser_->Parse(data, length);
- return true;
+ return parser_->Parse(data, length);
}
bool AppendDataInPieces(const uint8* data, size_t length) {

Powered by Google App Engine
This is Rietveld 408576698