| Index: media/formats/mpeg/mp3_stream_parser_unittest.cc
|
| diff --git a/media/formats/mpeg/mp3_stream_parser_unittest.cc b/media/formats/mpeg/mp3_stream_parser_unittest.cc
|
| index eefadc5486d26853ee9355563884fdd5d90c061b..85cc129fe158288d540c6b5c96f3babfc2788d87 100644
|
| --- a/media/formats/mpeg/mp3_stream_parser_unittest.cc
|
| +++ b/media/formats/mpeg/mp3_stream_parser_unittest.cc
|
| @@ -22,22 +22,22 @@ TEST_F(MP3StreamParserTest, UnalignedAppend) {
|
| const std::string expected =
|
| "NewSegment"
|
| "{ 0K }"
|
| - "{ 26K }"
|
| - "{ 52K }"
|
| - "{ 78K }"
|
| - "{ 104K }"
|
| - "{ 130K }"
|
| - "{ 156K }"
|
| - "{ 182K }"
|
| + "{ 0K }"
|
| + "{ 0K }"
|
| + "{ 0K }"
|
| + "{ 0K }"
|
| + "{ 0K }"
|
| + "{ 0K }"
|
| + "{ 0K }"
|
| "EndOfSegment"
|
| "NewSegment"
|
| - "{ 208K }"
|
| - "{ 235K }"
|
| - "{ 261K }"
|
| + "{ 0K }"
|
| + "{ 0K }"
|
| + "{ 0K }"
|
| "EndOfSegment"
|
| "NewSegment"
|
| - "{ 287K }"
|
| - "{ 313K }"
|
| + "{ 0K }"
|
| + "{ 0K }"
|
| "EndOfSegment";
|
| EXPECT_EQ(expected, ParseFile("sfx.mp3", 17));
|
| }
|
| @@ -48,12 +48,12 @@ TEST_F(MP3StreamParserTest, UnalignedAppend512) {
|
| const std::string expected =
|
| "NewSegment"
|
| "{ 0K }"
|
| - "{ 26K 52K 78K 104K }"
|
| + "{ 0K 26K 52K 78K }"
|
| "EndOfSegment"
|
| "NewSegment"
|
| - "{ 130K 156K 182K }"
|
| - "{ 208K 235K 261K 287K }"
|
| - "{ 313K }"
|
| + "{ 0K 26K 52K }"
|
| + "{ 0K 26K 52K 78K }"
|
| + "{ 0K }"
|
| "EndOfSegment";
|
| EXPECT_EQ(expected, ParseFile("sfx.mp3", 512));
|
| }
|
|
|