summaryrefslogtreecommitdiffstats
path: root/media/mp4
diff options
context:
space:
mode:
authorddorwin@chromium.org <ddorwin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-11 03:27:22 +0000
committerddorwin@chromium.org <ddorwin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-11 03:27:22 +0000
commit874c1923b23798aae068cdb6f7f01e74c2b695d8 (patch)
tree12f5654f47e217b649182fe884779260404aa7f4 /media/mp4
parent3f8928374abadc5cc437e1182a842542ad86fc88 (diff)
downloadchromium_src-874c1923b23798aae068cdb6f7f01e74c2b695d8.zip
chromium_src-874c1923b23798aae068cdb6f7f01e74c2b695d8.tar.gz
chromium_src-874c1923b23798aae068cdb6f7f01e74c2b695d8.tar.bz2
Removed files that were renamed in a previous CL.
Review URL: https://chromiumcodereview.appspot.com/11830060 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176250 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/mp4')
-rw-r--r--media/mp4/mp4_stream_parser_unittest.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/media/mp4/mp4_stream_parser_unittest.cc b/media/mp4/mp4_stream_parser_unittest.cc
index 66f3410..99aa206 100644
--- a/media/mp4/mp4_stream_parser_unittest.cc
+++ b/media/mp4/mp4_stream_parser_unittest.cc
@@ -124,18 +124,18 @@ class MP4StreamParserTest : public testing::Test {
TEST_F(MP4StreamParserTest, TestUnalignedAppend) {
// Test small, non-segment-aligned appends (small enough to exercise
// incremental append system)
- ParseMP4File("bear.1280x720_dash.mp4", 512);
+ ParseMP4File("bear-1280x720-av_frag.mp4", 512);
}
TEST_F(MP4StreamParserTest, TestBytewiseAppend) {
// Ensure no incremental errors occur when parsing
- ParseMP4File("bear.1280x720_dash.mp4", 1);
+ ParseMP4File("bear-1280x720-av_frag.mp4", 1);
}
TEST_F(MP4StreamParserTest, TestMultiFragmentAppend) {
// Large size ensures multiple fragments are appended in one call (size is
// larger than this particular test file)
- ParseMP4File("bear.1280x720_dash.mp4", 768432);
+ ParseMP4File("bear-1280x720-av_frag.mp4", 768432);
}
TEST_F(MP4StreamParserTest, TestFlush) {
@@ -143,7 +143,7 @@ TEST_F(MP4StreamParserTest, TestFlush) {
InitializeParser();
scoped_refptr<DecoderBuffer> buffer =
- ReadTestDataFile("bear.1280x720_dash.mp4");
+ ReadTestDataFile("bear-1280x720-av_frag.mp4");
EXPECT_TRUE(AppendDataInPieces(buffer->GetData(), 65536, 512));
parser_->Flush();
EXPECT_TRUE(AppendDataInPieces(buffer->GetData(),
@@ -155,7 +155,7 @@ TEST_F(MP4StreamParserTest, TestReinitialization) {
InitializeParser();
scoped_refptr<DecoderBuffer> buffer =
- ReadTestDataFile("bear.1280x720_dash.mp4");
+ ReadTestDataFile("bear-1280x720-av_frag.mp4");
EXPECT_TRUE(AppendDataInPieces(buffer->GetData(),
buffer->GetDataSize(),
512));