diff options
author | Vittorio Giovara | 2015-06-30 15:38:47 +0200 |
---|---|---|
committer | Vittorio Giovara | 2015-07-01 00:13:58 +0100 |
commit | 2eef75fd7e1ac96ab9ca63bb4523078c908bc9b1 (patch) | |
tree | 3bfbf344c6b4d6929a04c5ce2e793332faccce2c | |
parent | df22e30172b09cda4d6f7d4f43508284be65848a (diff) |
mov: Adjust variable types to fix format warnings
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index b922579ac0..ba052067f6 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1013,7 +1013,7 @@ static int mov_read_colr(MOVContext *c, AVIOContext *pb, MOVAtom atom) { AVStream *st; char color_parameter_type[5] = { 0 }; - int color_primaries, color_trc, color_matrix; + uint16_t color_primaries, color_trc, color_matrix; int ret; if (c->fc->nb_streams < 1) |