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

Side by Side Diff: media/formats/mp4/mp4_stream_parser_unittest.cc

Issue 816353010: Implemented HEVC video demuxing and parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT Created 5 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <algorithm> 5 #include <algorithm>
6 #include <string> 6 #include <string>
7 7
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/bind_helpers.h" 9 #include "base/bind_helpers.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 ReadTestDataFile("bear-1280x720-a_frag-cenc_missing-saiz-saio.mp4"); 233 ReadTestDataFile("bear-1280x720-a_frag-cenc_missing-saiz-saio.mp4");
234 EXPECT_FALSE(AppendDataInPieces(buffer->data(), buffer->data_size(), 512)); 234 EXPECT_FALSE(AppendDataInPieces(buffer->data(), buffer->data_size(), 512));
235 } 235 }
236 236
237 // Test a file where all video samples start with an Access Unit 237 // Test a file where all video samples start with an Access Unit
238 // Delimiter (AUD) NALU. 238 // Delimiter (AUD) NALU.
239 TEST_F(MP4StreamParserTest, VideoSamplesStartWithAUDs) { 239 TEST_F(MP4StreamParserTest, VideoSamplesStartWithAUDs) {
240 ParseMP4File("bear-1280x720-av_with-aud-nalus_frag.mp4", 512); 240 ParseMP4File("bear-1280x720-av_with-aud-nalus_frag.mp4", 512);
241 } 241 }
242 242
243 #if defined(ENABLE_HEVC_DEMUXING)
244 TEST_F(MP4StreamParserTest, HEVC_in_MP4_container) {
245 ParseMP4File("bear-hevc-frag.mp4", 512);
246 }
247 #endif
248
243 // TODO(strobe): Create and test media which uses CENC auxiliary info stored 249 // TODO(strobe): Create and test media which uses CENC auxiliary info stored
244 // inside a private box 250 // inside a private box
245 251
246 } // namespace mp4 252 } // namespace mp4
247 } // namespace media 253 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698