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

Unified Diff: media/muxers/webm_muxer_unittest.cc

Issue 1920483002: MediaRecorderHandler and WebmMuxer: add support for H264. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« media/muxers/webm_muxer.cc ('K') | « media/muxers/webm_muxer.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/muxers/webm_muxer_unittest.cc
diff --git a/media/muxers/webm_muxer_unittest.cc b/media/muxers/webm_muxer_unittest.cc
index 03634de8b01d98b6485b45a0a347a0124a52646a..738ed7227e9eeb837a9c9d5b16b899ed6b52b66a 100644
--- a/media/muxers/webm_muxer_unittest.cc
+++ b/media/muxers/webm_muxer_unittest.cc
@@ -243,6 +243,9 @@ const kTestParams kTestCases[] = {
{kCodecVP9, 1, 0},
{kCodecVP9, 0, 1},
{kCodecVP9, 1, 1},
+ {kCodecH264, 1, 0},
+ {kCodecH264, 0, 1},
+ {kCodecH264, 1, 1},
emircan 2016/04/25 19:26:16 Good time to adress TODO: const VideoCodec kCodecs
mcasas 2016/04/26 18:13:38 I tried for a while but it turned out to be involv
};
INSTANTIATE_TEST_CASE_P(, WebmMuxerTest, ValuesIn(kTestCases));
« media/muxers/webm_muxer.cc ('K') | « media/muxers/webm_muxer.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698