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

Side by Side Diff: content/common/gpu/media/h264_parser_unittest.cc

Issue 10710002: Add HE AAC support to ISO BMFF. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Explicitly check if audio is AAC. 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "testing/gtest/include/gtest/gtest.h" 5 #include "testing/gtest/include/gtest/gtest.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/string_number_conversions.h" 10 #include "base/string_number_conversions.h"
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 test_stream_filename = it->second.c_str(); 84 test_stream_filename = it->second.c_str();
85 } else if (it->first == "num_nalus") { 85 } else if (it->first == "num_nalus") {
86 CHECK(base::StringToInt(it->second, &num_nalus)); 86 CHECK(base::StringToInt(it->second, &num_nalus));
87 } else { 87 } else {
88 LOG(FATAL) << "Unexpected switch: " << it->first << ":" << it->second; 88 LOG(FATAL) << "Unexpected switch: " << it->first << ":" << it->second;
89 } 89 }
90 } 90 }
91 91
92 return RUN_ALL_TESTS(); 92 return RUN_ALL_TESTS();
93 } 93 }
94
acolwell GONE FROM CHROMIUM 2012/07/03 01:00:12 nit: remove unnecessary change.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698