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

Unified Diff: media/ffmpeg/ffmpeg_regression_tests.cc

Issue 2635573002: Fix int-overflow due to absent stream timestamp (Closed)
Patch Set: Addressed comments Created 3 years, 11 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
« no previous file with comments | « no previous file | media/filters/ffmpeg_demuxer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/ffmpeg/ffmpeg_regression_tests.cc
diff --git a/media/ffmpeg/ffmpeg_regression_tests.cc b/media/ffmpeg/ffmpeg_regression_tests.cc
index 1c0b0a56127e953a6cf9d94ff2eaebcab2463fda..36a16ba23d62a14a36e4d5881435b7cce66f9403 100644
--- a/media/ffmpeg/ffmpeg_regression_tests.cc
+++ b/media/ffmpeg/ffmpeg_regression_tests.cc
@@ -101,7 +101,10 @@ FFMPEG_TEST_CASE(Cr112384,
"security/112384.webm",
DEMUXER_ERROR_COULD_NOT_PARSE,
DEMUXER_ERROR_COULD_NOT_PARSE);
-FFMPEG_TEST_CASE(Cr112976, "security/112976.ogg", PIPELINE_OK, PIPELINE_OK);
+FFMPEG_TEST_CASE(Cr112976,
+ "security/112976.ogg",
+ PIPELINE_OK,
+ DEMUXER_ERROR_COULD_NOT_PARSE);
FFMPEG_TEST_CASE(Cr116927,
"security/116927.ogv",
DEMUXER_ERROR_NO_SUPPORTED_STREAMS,
@@ -110,17 +113,26 @@ FFMPEG_TEST_CASE(Cr117912,
"security/117912.webm",
DEMUXER_ERROR_COULD_NOT_OPEN,
DEMUXER_ERROR_COULD_NOT_OPEN);
-FFMPEG_TEST_CASE(Cr123481, "security/123481.ogv", PIPELINE_OK, PIPELINE_OK);
+FFMPEG_TEST_CASE(Cr123481,
+ "security/123481.ogv",
+ PIPELINE_OK,
+ DEMUXER_ERROR_COULD_NOT_PARSE);
FFMPEG_TEST_CASE(Cr132779,
"security/132779.webm",
DEMUXER_ERROR_COULD_NOT_PARSE,
DEMUXER_ERROR_COULD_NOT_PARSE);
-FFMPEG_TEST_CASE(Cr140165, "security/140165.ogg", PIPELINE_OK, PIPELINE_OK);
+FFMPEG_TEST_CASE(Cr140165,
+ "security/140165.ogg",
+ PIPELINE_OK,
+ DEMUXER_ERROR_COULD_NOT_PARSE);
FFMPEG_TEST_CASE(Cr140647,
"security/140647.ogv",
DEMUXER_ERROR_COULD_NOT_OPEN,
DEMUXER_ERROR_COULD_NOT_OPEN);
-FFMPEG_TEST_CASE(Cr142738, "crbug142738.ogg", PIPELINE_OK, PIPELINE_OK);
+FFMPEG_TEST_CASE(Cr142738,
+ "crbug142738.ogg",
+ PIPELINE_OK,
+ DEMUXER_ERROR_COULD_NOT_PARSE);
FFMPEG_TEST_CASE(Cr152691,
"security/152691.mp3",
PIPELINE_OK,
« no previous file with comments | « no previous file | media/filters/ffmpeg_demuxer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698