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

Unified Diff: media/formats/mp4/track_run_iterator.cc

Issue 2932853002: Fix signed integers in track_run_iterator.cc (Closed)
Patch Set: Created 3 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/formats/mp4/track_run_iterator.cc
diff --git a/media/formats/mp4/track_run_iterator.cc b/media/formats/mp4/track_run_iterator.cc
index f109873b27a19251a5b9d2f4424fb26e31e7f912..d3543f40aa55d2f780777d7f8ead8cde7d700eea 100644
--- a/media/formats/mp4/track_run_iterator.cc
+++ b/media/formats/mp4/track_run_iterator.cc
@@ -18,8 +18,8 @@ namespace media {
namespace mp4 {
struct SampleInfo {
- int size;
- int duration;
+ uint32_t size;
+ uint32_t duration;
int cts_offset;
bool is_keyframe;
uint32_t cenc_group_description_index;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698