[FFmpeg-cvslog] mov: Adjust variable types to fix format warnings
Vittorio Giovara
git at videolan.org
Wed Jul 1 04:13:18 CEST 2015
ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Tue Jun 30 15:38:47 2015 +0200| [2eef75fd7e1ac96ab9ca63bb4523078c908bc9b1] | committer: Vittorio Giovara
mov: Adjust variable types to fix format warnings
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2eef75fd7e1ac96ab9ca63bb4523078c908bc9b1
---
libavformat/mov.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index b922579..ba05206 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)
More information about the ffmpeg-cvslog
mailing list